Skip to content

Instantly share code, notes, and snippets.

@chikien276
Last active December 6, 2017 04:19
Show Gist options
  • Save chikien276/78fe4ae4ef7245ad32a99f18c83b23e5 to your computer and use it in GitHub Desktop.
Save chikien276/78fe4ae4ef7245ad32a99f18c83b23e5 to your computer and use it in GitHub Desktop.
// 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