Skip to content
Discussion options

You must be logged in to vote

Ffmpeg can definitely do this. You just have to add this command manually into the settings.yml file or adjust the ffmpeg command through the Settings UI.

The command template looks roughly like this'

ffmpeg -i {input} \
  -codec: copy \
  -start_number 0 \
  -hls_time 10 \
  -hls_list_size 0 \
  -f hls {output}

With Formats being:

m3u8

for mp4 --> m3u8

So something like:

  ffmpeg_hls:
    name: FFmpeg HLS 
    command_template: ffmpeg -i {input} -codec: copy -start_number 0 -hls_time 10 -hls_list_size 0 -f hls {output}
    timeout: 600
    formats:
      m3u8: M3U8 HLS
  

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by LoredCast
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants