我正在做一个截屏视频,我正在录制屏幕上发生的事情以及来自外部 USB 麦克风的同步音频评论。我正在使用以下命令:
ffmpeg -f x11grab -r 25 -s 1280x720 -i :0.0+320,236 -thread_queue_size 1024 -f alsa -thread_queue_size 1024 -i hw:1 -vcodec huffyuv screencast.mkv
我认为使用如此高的值thread_queue_size
应该让我进入安全站点,以避免buffer xrun
我之前遇到的任何错误。然而,情况似乎并非如此。这是录制过程中出现的警告消息:
[x11grab @ 0x55ffe44e6a40] Thread message queue blocking; consider raising the thread_queue_size option (current value: 8)
[alsa @ 0x55ffe44efe80] Thread message queue blocking; consider raising the thread_queue_size option (current value: 1024)
[alsa @ 0x55ffe44efe80] ALSA buffer xrun.B time=00:07:35.96 bitrate=203382.4kbits/s speed=0.994x
[alsa @ 0x55ffe44efe80] ALSA buffer xrun.B time=00:20:18.76 bitrate=210805.7kbits/s speed=0.998x
我不明白的两件事:
- 为什么
x11grab
说thread_queue_size
is8
,而我将其设置为1024
? - 仍然是一个
ALSA buffer xrun
错误/警告,尽管thread_queue_size
of1024
,我可以在这里放什么值 - 最大值是多少,该值到底是什么意思?
任何意见将不胜感激!
版本:
ffmpeg version 3.4.6-0ubuntu0.18.04.1
Kernel 4.15.0-99-generic
xubuntu 18.04.4 LTS x86_64
.