-
Notifications
You must be signed in to change notification settings - Fork 140
Open
Labels
Description
like someone read on the issues tread, i had success streaming pre-recorded video clips using stream-m (in webm and h264-flv) but still working on feeding the server with hardware h264/aac encoded live video.
Today i tested the idea to use HLS instead of rtpm, and seems it works.
This ffmpeg command:
ffmpeg -y -re -f mpegts -i /dev/video0 -c:v copy -c:a copy -f hls test.m3u8
generates a bunch of test#.ts files and a plain text file (named test.m3u8) that summarize the ts franctions and the order to playback.
VLC plays ok all the clips and also the m3u8 ... so the question is ... Could be an option to add HLS to stream-m?
cheers.
Federico