On 04/08/14 05:57, Jeremy Hansen wrote: > > I was hoping someone could give me a hand getting hls live streaming > functioning. Right now I’m using flash to a rtmp server. nginx-rtmp > support HLS on some level as well, but I’m not entirely sure on the > configs on that end either. > > bmdcapture -C 0 -m 14 -V 4 -A 2 -F nut -f pipe:1 | avconv -y -i - -f > flv -c:v libx264 -c:a aac -ar 22050 -strict experimental -s 384x216 > -b:a 64k rtmp://live.chesterfield.com/chesterfield/video > > I’m happy to give someone some consulting money if this leads to a > functioning HLS stream. I need to get this up and running semi > quickly and I have no probably throwing a couple bucks at someone to > speed up the process. > > Basically using avconv, nginx-rtmp and JW Player.
I'm not aware nginx-rtmp developed internal remuxing capabilities, you should be able to spawn an avconv and make it generate an hls playlist and files using avconv -i $theurl -c copy -h264_mp4toannexb out.m3u8 Probably I should document that in the wiki... Let me know if it helps or you need more details. lu _______________________________________________ libav-tools mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-tools
