Skip to content

Instantly share code, notes, and snippets.

@yspkm
Created December 4, 2023 02:58
Show Gist options
  • Save yspkm/faba31d81688efe342e64b1f5b0c3517 to your computer and use it in GitHub Desktop.
Save yspkm/faba31d81688efe342e64b1f5b0c3517 to your computer and use it in GitHub Desktop.
kazam mp4 to window11
#!/bin/bash
files=('data_extraction' 'installation' 'simulation_0_setup' 'simulation_1_rungui' 'simulation_2_runcli')
for file in "${files[@]}"; do
ffmpeg -y \
-i "${file}.mp4" \
-c:v libx264 \
-c:a aac -strict experimental -tune fastdecode -pix_fmt yuv420p \
-b:a 192k -ar 48000 "../${file}.mp4"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment