由於 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 ***

相關內容