I'm trying to capture a live stream from phone (iOS) and display it in a browser.
I've gotten the capturing working and I can see that about 2 second chunks of mp4 files get created on my server.
And here's where I'm stuck. What do I do from here to create a stream and display in a browser? There's a lot of good info regarding ffmpeg
but I don't quite understand the flow. What do I do with these small mp4 files and create a stream? Can I use <video>
tag?
I found this: Streaming via RTSP or RTP in HTML5 and rtp://myserver.com/path/to/stream
is mentioned in the answer. How do I create such a stream from those mp4 files?
Thanks.