我试图将桌面屏幕投射到ffserver并将其作为webm进行流式传输。我使用以下ffserver配置:
<Feed feed1.ffm> # This is the input feed where FFmpeg will send
File ./feed1.ffm # video stream.
FileMaxSize 1G # Maximum file size for buffering video
ACL allow 127.0.0.1
ACL allow localhost
</Feed>
<Stream test.webm> # Output stream URL definition
Feed feed1.ffm # Feed from which to receive video
Format webm
# Audio settings
AudioCodec vorbis
AudioBitRate 64 # Audio bitrate
# Video settings
VideoCodec libvpx
VideoSize 720x576 # Video resolution
VideoFrameRate 25 # Video FPS
AVOptionVideo cpu-used 10
AVOptionVideo qmin 10
AVOptionVideo qmax 42
AVOptionVideo quality good
AVOptionAudio flags +global_header
PreRoll 15
StartSendOnKey
VideoBitRate 400 # Video bitrate
</Stream>
我桌面上的以下命令:
ffmpeg -f x11grab -r 25 -s 1280x800 -i :0.0 -f alsa -i pulse http://127.0.0.1:8090/feed1.ffm
ffmpeg是版本2.4.2并且启用了libvpx(Arch上的最新版本)。我收到错误:
[libvpx @ 0x20a21a0] CQ level 0 must be between minimum and maximum quantizer value (10-42)
在客户端。我可以通过调用ffmpeg -h full
告诉我无法设置cq级别,并将qmin设置为0并不起作用(由于某种原因它最终会变为3,我猜ffmpeg强制执行最低限度。)
这种配置似乎适用于互联网上的其他人,但我不知道如果cq级别默认为0.如果有人有任何想法,我真的很感激。
答案 0 :(得分:5)
将-c:v libvpx
添加到控制台语法中:
ffmpeg -f x11grab -r 25 -s 1280x800 -i :0.0 -c:v libvpx -f alsa -i pulse http://127.0.0.1:8090/feed1.ffm
另外,我建议您阅读ffmpeg streaming guide