在我的树莓派3 + B上,我使用ffmpeg+ffserver
来传输两个摄像头。
我在后台运行两个命令:
raspivid -o - t 0 -w 640 -h 480 -fps 25 -n | ffmpeg -i - -crf 26 -preset ultrafast http://localhost:1234/feed1.ffm
python cam.py | ffmpeg -f rawvideo -vcodec rawvideo -s 80x60 -pix_fmt bgr24 -r 26 -i - -an -vcodec libx264 -preset ultrafast http://localhost:123/feed2.ffm
我有一台运行python脚本的笔记本电脑通过无线方式从覆盆子pi中读取凸轮。
当我单独阅读它们时,它们都可以正常工作。但是,当我尝试同时读取它们时,我得到rtsp method SETUP failed: 453 Not Enough Bandwith
。
有什么想法吗?
由于
答案 0 :(得分:1)
我遇到的错误:
method SETUP failed: 453 Not Enough Bandwidth
rtsp://192.168.101.155:1235/test1.sdp: Server returned 4XX Client Error,
but not one of 40{0,1,3,4}
我如何解决:
我检查了“ffserver configuration file”的 MaxClients 和 MaxBandwidth 参数。最后,我增加了 MaxClients 和 MaxBandwidth 的数量来修复它。
例如:
MaxClients 10
MaxBandwidth 100000