由于 malloc 错误,无法使用 ffserver 流式传输网络摄像头

由于 malloc 错误,无法使用 ffserver 流式传输网络摄像头

我正在关注这个教程RaspBerry Pi 网络摄像头当我从 root 运行以下命令时:

$ ffserver -f /root/ffserver.conf & ffmpeg -v 2 -r 5 -s 640x480 -f video4linux2 -i /dev/video1` http://localhost:8090/webcam.ffm

相机已打开,一切正常,只是没有流媒体。我检查了终端。从视频 1 中,我收到以下错误:

bind(port 8090): Address already in use
*** glibc detected *** ffmpeg: malloc(): smallbin double linked list corrupted: 0x0000000000e5ac00 **

当我使用其他端口(例如 5000)时,得到了相同的结果:

$ ffserver -f /root/ffserver.conf & ffmpeg -v 2 -r 5 -s 640x480 -f video4linux2 -i /dev/video1 http://localhost:8090/webcam.ffm
[2] 3795
avserver version 0.8.3-4:0.8.3-0ubuntu0.12.04.1, Copyright (c) 2000-2012 the Libav developers
  built on Jun 12 2012 16:52:09 with gcc 4.6.3
*** glibc detected *** ffmpeg: malloc(): smallbin double linked list corrupted: 0x0000000000b77c00 ***

相关内容