I'm trying to pipe FFMpeg output into mediastreamsegmenter to create HLS.
However this procedure:
Ffmpeg -i {file} <other arguments> -f mpegts | mediastreamsegmenter <arguments>
Makes the segmenter create an index for a VOD using the output of FFmpeg rather than a live event. Re-executing this instruction would override the manifest file for every output of ffmpeg.
Is there any way I could have a live ffmpeg pipe to mediastreamsegmenter? I don't want to use UDP as it doesn't make sense here. Video fragments are all local.