Ubuntu RTMP实时视频流



我正试图从ubuntu启动实时(而非点播)RTMP流,但我只能通过VLC 成功地启动RTSP

vlc -vvv ./videos/test.mp4 --sout '#rtp{dst=192.168.8.106,port=1234,sdp=rtsp://192.168.8.106:1234/test.sdp}'

(来源于此-https://www.videolan.org/doc/streaming-howto/en/ch04.html)

不幸的是,任何flash或html5玩家都不支持它。对于RTMP流媒体,我发现"如何"只适用于网络摄像头的情况-http://www.jpsaman.org/vlc/rtmp

有人能帮我从这两个例子中创建RTMP流的确切命令吗?或者有其他免费的linux软件可以启动RTMP流吗?

经过3天的研究和测试,我终于找到了vls+hls流媒体的解决方案。。。

vlc -vvv path/to/video/test.mp4 :sout="#transcode{vcodec=h264,vb=100, venc=x264{aud,profile=baseline,level=30,keyint=30,ref=1}, aenc=ffmpeg{aac-profile=low},acodec=mp4a,ab=32,channels=1,samplerate=8000} :std{access=livehttp{seglen=10,delsegs=true,numsegs=5, index=/var/www/video-stream/stream.m3u8, index-url=http://192.168.8.106/video-stream/stream-########.ts}, mux=ts{use-key-frames}, dst=/var/www/video-stream/stream-########.ts}"

这是我发现的唯一一个可以支持上层提供流的玩家-https://github.com/clappr/clappr

相关内容

  • 没有找到相关文章