我正在尝试将IP网络摄像头ASF直播流传输到ffserver以输出OGG格式。服务器成功启动,但用于提供ffserver的ffserver命令因段错误而失败。
输入流
$ ffprobe http://account:password@webcam/videostream.asf
Input #0, asf, from 'http://account:password@webcam/videostream.asf':
Duration: N/A, start: 0.000000, bitrate: 32 kb/s
Stream #0:0: Video: mjpeg (MJPG / 0x47504A4D), yuvj422p(pc), 640x480, 25 tbr, 1k tbn, 1k tbc
Stream #0:1: Audio: adpcm_ima_wav ([17][0][0][0] / 0x0011), 8000 Hz, 1 channels, s16p, 32 kb/s
ffserver配置
我的ffserver配置是:
Port 8091
RTSPPort 554
BindAddress 192.168.1.62
MaxHTTPConnections 1000
MaxClients 100
MaxBandwidth 1000
CustomLog -
<Feed webcam.ffm>
File /tmp/webcam.ffm
FileMaxSize 500M
ACL allow localhost
ACL allow 192.168.0.0 192.168.255.255
</Feed>
<Stream webcam.ogg>
Feed webcam.ffm
InputFormat asf
Format ogg
Preroll 15
VideoCodec libtheora
VideoFrameRate 7
VideoSize 640x480
PixelFormat yuv420p
Qscale 7
VideoBitRate 256
VideoBufferSize 40
AudioCodec libvorbis
AudioBitRate 64
StartSendOnKey
</Stream>
<Stream status.html>
Format status
# Only allow local people to get the status
ACL allow localhost
ACL allow 192.168.0.0 192.168.255.255
</Stream>
ffmpeg饲料
我运行以下失败的命令
$ ffmpeg -i http://account:password@webcam/videostream.asf http://ffserver_ip:port/webcam.ffm
Input #0, asf, from 'http://account:password@webcam/videostream.asf':
Duration: N/A, start: 0.000000, bitrate: 32 kb/s
Stream #0:0: Video: mjpeg (MJPG / 0x47504A4D), yuvj422p(pc), 640x480, 25 tbr, 1k tbn, 1k tbc
Stream #0:1: Audio: adpcm_ima_wav ([17][0][0][0] / 0x0011), 8000 Hz, mono, s16p, 32 kb/s
[swscaler @ 0x36a80c0] deprecated pixel format used, make sure you did set range correctly
Segmentation fault
谢谢你的帮助
请包括完整的控制台输出。您的输出缺少可能有用的版本和配置信息。
—
llogan