Skip to content

Instantly share code, notes, and snippets.

@baku89
Last active March 24, 2022 06:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save baku89/efe764913b7daabfa8a24247ee849559 to your computer and use it in GitHub Desktop.
Save baku89/efe764913b7daabfa8a24247ee849559 to your computer and use it in GitHub Desktop.
Useful FFMpeg Snippets
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