【问题标题】:ffmpeg: consider increasing probesize error, but it is never satisfiedffmpeg:考虑增加probesize错误,但它永远不会满足
【发布时间】:2021-02-05 22:16:58
【问题描述】:

我今天尝试使用Arch solution 通过 FFMPEG 进行流式传输,但由于 FFMPEG 上的一件简单事情,我所有的尝试都徒劳无功。它说probesize不够大,所以我本能地越来越多地增加probesize值......现在是-probesize "500M"但它仍然说它还不够。这是代码sn-p

[x11grab @ 0x5631f846cd00] Stream #0: not enough frames to estimate rate; consider increasing probesize
Input #0, x11grab, from ':0.0':
  Duration: N/A, start: 1603397505.341400, bitrate: 1007124 kb/s
    Stream #0:0: Video: rawvideo (BGR[0] / 0x524742), bgr0, 1366x768, 1007124 kb/s, 30 fps, 1000k tbr, 1000k tbn, 1000k tbc
0: Input/output error

和代码

#!/bin/bash
     INRES="1366x768" # input resolution
     OUTRES="1366x768" # output resolution
     FPS="30" # target FPS
     GOP="60" # i-frame interval, should be double of FPS,
     GOPMIN="30" # min i-frame interval, should be equal to fps,
     THREADS="2" # max 6
     CBR="1000k" # constant bitrate (should be between 1000k - 3000k)
     QUALITY="ultrafast"  # one of the many FFMPEG preset
     AUDIO_RATE="44100"
     PROBESZ="500M" # specify a size for the ffmpeg tool to assess frames
     STREAM_KEY="$1" # paste the stream key after calling stream_now
     SERVER="live-mia" # twitch server in miami Florida, see https://stream.twitch.tv/ingests/ for list

     ffmpeg -f x11grab -s "$INRES" -r "$FPS" -i :0.0 -f pulse -i 0 -f flv -ac 2 -ar $AUDIO_RATE \
       -vcodec libx264 -g $GOP -keyint_min $GOPMIN -b:v $CBR -minrate $CBR -maxrate $CBR -pix_fmt yuv420p\
       -s $OUTRES -preset $QUALITY -tune film -acodec aac -threads $THREADS -strict normal \
       -bufsize $CBR -probesize $PROBESZ "rtmp://$SERVER.twitch.tv/app/$STREAM_KEY"

尽管它是存储在 .bashrc 中的解决方案,但我还是将其存储在脚本中以手动调用。

如果这有帮助,这里是 ffmpeg 在错误之前显示的精美横幅

ffmpeg version n4.3.1 Copyright (c) 2000-2020 the FFmpeg developers
  built with gcc 10.1.0 (GCC)
  configuration: --prefix=/usr --disable-debug --disable-static --disable-stripping --enable-avisynth --enable-fontconfig --enable-gmp --enable-gnutls --enable-gpl --enable-ladspa --enable-libaom --enable-libass --enable-libbluray --enable-libdav1d --enable-libdrm --enable-libfreetype --enable-libfribidi --enable-libgsm --enable-libiec61883 --enable-libjack --enable-libmfx --enable-libmodplug --enable-libmp3lame --enable-libopencore_amrnb --enable-libopencore_amrwb --enable-libopenjpeg --enable-libopus --enable-libpulse --enable-librav1e --enable-libsoxr --enable-libspeex --enable-libsrt --enable-libssh --enable-libtheora --enable-libv4l2 --enable-libvidstab --enable-libvmaf --enable-libvorbis --enable-libvpx --enable-libwebp --enable-libx264 --enable-libx265 --enable-libxcb --enable-libxml2 --enable-libxvid --enable-nvdec --enable-nvenc --enable-omx --enable-shared --enable-version3
  libavutil      56. 51.100 / 56. 51.100
  libavcodec     58. 91.100 / 58. 91.100
  libavformat    58. 45.100 / 58. 45.100
  libavdevice    58. 10.100 / 58. 10.100
  libavfilter     7. 85.100 /  7. 85.100
  libswscale      5.  7.100 /  5.  7.100
  libswresample   3.  7.100 /  3.  7.100
  libpostproc    55.  7.100 / 55.  7.100

【问题讨论】:

  • @WurmD 从已关闭 3 个月的已解决帖子中删除“已解决”一词的目的是什么?
  • 嗨 Jaz,Stackoverflowy 不好 :)。当您接受并回答时,该绿色复选标记表示“已解决”。标题应该以一种有利于其他人将来搜索的方式总结问题
  • 抱歉,我可能是出于使用 Arch 论坛时的习惯,他们要求您将其添加到标题前。

标签: ffmpeg streaming twitch


【解决方案1】:

Stream #0: not enough frames to estimate rate; consider increasing probesize

这只是一个小警告。您可以忽略它,但如果您希望它消失,请在输入选项中使用 -probesize。您将其用作输出选项。 Order and placementffmpeg 中很重要。

ffmpeg -probesize 10M -i input ...

0: Input/output error

这是导致失败的实际错误。它试图告诉您-i 0 不涉及任何实际输入。

所以你需要为脉冲提供一个实际的输入,比如-i default

要列出 PulseAudio 源设备及其属性,请运行 pactl list sources

请参阅FFmpeg Devices Documentation: Pulse 了解更多信息。

脚本

几年前,我试图对 Arch Wiki 上有时相当糟糕、过时或完全错误的 ffmpeg 示例进行改进,但我收到了有人抱怨我违反了“不要立即进行复杂的编辑”并将其退回。浪费时间,所以我再也没碰过它。我推荐FFmpeg Wiki

一些建议的更改:

#!/bin/bash
INRES="1366x768" # input resolution
OUTRES="1366x768" # output resolution
FPS="30" # target FPS. Use 30 or 60. 60 is preferred for games if your computer can handle it.
GOP="60" # i-frame interval, should be double of $FPS
BITRATE="4000k" # bitrate (should be between 3000k - 6000k). See https://stream.twitch.tv/encoding/
BUFSIZE="8000k" # 2x to 4x $BITRATE
PRESET="fast"  # use slowest preset that still maintains $FPS. See https://trac.ffmpeg.org/wiki/Encode/H.264#Preset
AUDIO_SAMPLE_RATE="44100"
STREAM_KEY="$1" # paste the stream key after calling stream_now
SERVER="live-mia" # twitch server in miami Florida, see https://stream.twitch.tv/ingests/ for list

ffmpeg \
  -f x11grab -video_size "$INRES" -framerate "$FPS" -i :0.0 \
  -f pulse -channels 2 -sample_rate "$AUDIO_SAMPLE_RATE" -i default \
  -c:v libx264 -g "$GOP" -b:v "$BITRATE" -maxrate "$BITRATE" -bufsize "$BUFSIZE" -vf format=yuv420p \
  -s "$OUTRES" -preset "$PRESET" -c:a aac \
  -f flv "rtmp://$SERVER.twitch.tv/app/$STREAM_KEY"

【讨论】:

  • 谢谢!!!!这正是我让流正常工作所需要的!!!
  • 我建议在答案中添加一个带有默认选项的SERVER 变量,以便复制粘贴者知道有一个服务器变量要编辑。我花了一点时间才意识到为什么它会抛出有关无效 URL 的错误。
猜你喜欢
  • 2020-02-03
  • 2012-06-09
  • 1970-01-01
  • 2018-05-01
  • 1970-01-01
  • 1970-01-01
  • 2015-06-17
  • 1970-01-01
  • 1970-01-01
相关资源
最近更新 更多