Created
March 14, 2017 02:34
-
-
Save polyrhythmatic/6ee597430561bf2b830898d3112e7cc8 to your computer and use it in GitHub Desktop.
mp4 to mpeg1 batch
This file contains 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 -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