我正在尝试将流媒体从树莓派相机传输到我的运动服务器。
Raspberry pi(10.10.84.2)具有用于 RTSP 的 VLC,运行方式如下:
raspivid -o - -t 0 |cvlc -vvv stream:///dev/stdin --sout '#rtp{sdp=rtsp://:8554/}' :demux=h264
当我尝试从 PC 上的其他 VLC 连接到它时,它工作正常。之后我设置 motion.conf 以获取相同的 URL:rtsp://10.10.84.2:8554/
netcam_url rtsp://10.10.84.2:8554/
在运动日志文件中:
[2] [ERR] [NET] [Dec 29 08:07:10] netcam_rtsp_open_context: unable to open input(rtsp://10.10.84.2:8554/): Protocol not supported
我已经在 ffmpeg 的支持下从 MrDave 源构建了运动。有人知道为什么会发生这种情况吗?
谢谢