Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save polyrhythmatic/6ee597430561bf2b830898d3112e7cc8 to your computer and use it in GitHub Desktop.
Save polyrhythmatic/6ee597430561bf2b830898d3112e7cc8 to your computer and use it in GitHub Desktop.
mp4 to mpeg1 batch
for i in *.MP4;
do ffmpeg -i $i -filter:v "crop=810:1080:555:0" -f mpegts -codec:v mpeg1video -s 540x720 -b:v 800k -r 29.97 -bf 0 -an $i.ts;
done;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment