Last active
March 24, 2022 06:33
-
-
Save baku89/efe764913b7daabfa8a24247ee849559 to your computer and use it in GitHub Desktop.
Useful FFMpeg Snippets
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
for i in *.mp4; \ | |
do ffmpeg -i "$i" \ | |
-c:v prores_ks -profile:v 3 -vendor apl0 -bits_per_mb 8000 -pix_fmt yuv422p10le \ | |
-vf select='not(mod(n\,900))',setpts=N/FRAME_RATE/TB \ | |
-an \ | |
"${i%.*}".mov; \ | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment