Last active
December 6, 2017 04:19
-
-
Save chikien276/78fe4ae4ef7245ad32a99f18c83b23e5 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
// convert mp3 to mp4 file | |
Measure-Command { ffmpeg -i 1.mp3 -shortest -b 1000k -acodec copy 3.mp4 } | |
// Crop mp4 file to ts file | |
Measure-Command { ffmpeg -i .\output.mp4 -c:v h264 -flags +cgop -g 30 -hls_time 1 -strict -2 -hls_playlist_type 2 2/out.m3u8 } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment