How to stream multiple videos With ffmpeg?

0

Good evening everyone, well I'm doing a Streaming video application, and I'm needing ffmpeg to turn multiple mp4 files into m3u8 I'll do it that way

ffmpeg -i video.mp4 -c copy saida.m3u8

However when I perform the same task on another terminal, to transmit another video, the old one stops transmitting. have any way to stream both videos using ffmpeg?

    
asked by anonymous 10.02.2018 / 02:19

1 answer

0

If the conversion is to HLS, UDP and RTP you can use the ffserver also, if the file is on your computer and only set as the input file and choose the output, configure ffserver.

    
22.03.2018 / 18:41