Created
December 4, 2023 02:58
-
-
Save yspkm/faba31d81688efe342e64b1f5b0c3517 to your computer and use it in GitHub Desktop.
kazam mp4 to window11
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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