Created
January 5, 2012 13:06
-
-
Save 4poc/1565186 to your computer and use it in GitHub Desktop.
ffmpeg / mpeg-ts / m3u8 / HLS
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
ffmpeg \ | |
-i INPUT_FILE \ | |
-re \ | |
-r 23.976 \ | |
-s 480x204 \ | |
-aspect 2.35 \ | |
-acodec libfaac \ | |
-ac 2 \ | |
-ar 44100 \ | |
-ab 128k \ | |
-vcodec libx264 \ | |
-vprofile baseline \ | |
-preset fast \ | |
-vb 500k \ | |
-f mpegts \ | |
-threads 0 \ | |
-async 2 \ | |
OUTPUT_FILE.ts |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment