Ubuntu RTMP直播视频流

时间:2015-11-17 06:10:00

标签: ubuntu stream 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流?

1 个答案:

答案 0 :(得分:1)

经过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