Skip to content

Instantly share code, notes, and snippets.

@bradfordcp
Created May 21, 2013 16:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bradfordcp/5621278 to your computer and use it in GitHub Desktop.
Save bradfordcp/5621278 to your computer and use it in GitHub Desktop.
Transcodes the source MP4 into a HLS stream
#!/bin/bash
ffmpeg -i ./quick_tips_1280x720.mp4 -c copy -map 0 -vbsf h264_mp4toannexb -f segment -segment_time 5 -segment_list quick_tips.m3u8 -segment_format mpegts quick_tips_hd%06d.ts
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment