Last active
August 29, 2015 14:12
-
-
Save gofer/384a4d4708fbde982841 to your computer and use it in GitHub Desktop.
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
ffmpeg -y -i input.ts -movflags faststart \ | |
-f mp4 -vcodec libx264 -fpre /usr/local/share/ffmpeg/libx264.ffpreset -r 30000/1001 \ | |
-aspect 16:9 -s 1440x1080 -bufsize 20000k -maxrate 25000k -vsync 1 \ | |
-acodec libfaac -ac 2 -ar 48000 -ab 320k output.mp4 -map "0.0" -map "0.1" | |
# ffmpeg -y -i input.ts -movflags faststart -f mp4 -vcodec libx264 -fpre -r | |
# 14839.19s user 26.57s system 691% cpu 35:49.17 total |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment