Ubuntu 直播 RTMP 视频流

Ubuntu 直播 RTMP 视频流

我正在尝试从 ubuntu 启动实时(非点播)RTMP 流,但我仅RTSP通过 VLC 流成功

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

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

答案1

经过长时间的研究和测试,我终于找到了 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}"

这是我发现的唯一可以支持上层提供的 hls 流的播放器 -https://github.com/clappr/clappr

相关内容