How do I generate a file M3U8 compatible with fmp4?

Viewed 1097

I have a streaming solution that use MPEG-Dash protocol, and I would like to expose the same files on hls for IOS devices.

I read that fmp4 is now compatible with hls, so I thought that this could be done

When I generate may mpd file with this command:

MP4Box -dash 33000 -frag 33000 -out video.mpd -profile dashavc264:onDemand original.mp4#audio original.mp4#video

what I want is to not duplicate files, and use my generated Dash files with a HLS manifest file.

1 Answers

It seems that this fork of gpac has experimental support for this. Also see this ticket - it has a link to a compiled gpac version from this branch and notes how to use it.

Related