Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save crowjdh/9076d3f67156a96630f860ddb71adb36 to your computer and use it in GitHub Desktop.
Save crowjdh/9076d3f67156a96630f860ddb71adb36 to your computer and use it in GitHub Desktop.

List available programs

$ ffmpeg -i <URL.m3u8>

Specifying program

$ ffmpeg -i URL.m3u8 -map <SOURCE_IDX>:p:<PROGRAM_NUMBER> -c copy output.ext

Specify video/audio stream

$ ffmpeg -i URL.m3u8 -map <SOURCE_IDX>:v:<VIDEO_STREAM_INDEX> -map <SOURCE_IDX>:a:<VIDEO_STREAM_INDEX> -c copy output.ext

Example

$ ffmpeg -i URL.m3u8 -map 0:p:4 -c copy output.mp4
$ ffmpeg -i URL.m3u8 -map 0:v:0 -map 0:a:0 -c copy output.mp4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment