I am receiving mpeg-2 transport stream on a buffer and i need to serve the content using HTTP to a web view.
I'm planning to implement it using the mpeg-dash specification and a simple HTTP server. One way is to parse the transport stream packet myself and generate live segments and an mpd file accordingly, but it seems like a long process.
I have gone through tools like mp4box and ffmpeg that are able to generate dash compatible segments using static media files, but the documentation isn't clear enough for beginners.
Is there any easy way to generate dash content live (into the server's root folder) using a buffered transport stream as input (maybe through pipe).
If there is any better way please let me know. You think parsing the transport stream packet ourselves will be a better option?