【问题标题】:ffmpeg Error: Too many packets buffered for output streamffmpeg 错误:为输出流缓冲的数据包过多
【发布时间】:2022-02-06 22:08:01
【问题描述】:

我正在开发一个使用 ffmpeg 的电子应用程序,我正在一个 win10 机器上开发,所以我使用命令提示符并且我已经安装了 npm 包“ffmpeg-ffprobe-static”。我可以通过像这样调用包在终端中运行 ffmpeg 命令:

C:\Users\martin\myproject\node_modules\ffmpeg-ffprobe-static>ffmpeg.exe -h
ffmpeg version 4.3 Copyright (c) 2000-2020 the FFmpeg developers
  built with gcc 9.3.1 (GCC) 20200621
....

我有一个 ffmpeg 命令可以将两个 flac 文件合并为一个 mp3 文件,该文件一直运行良好,直到我遇到此错误:

[mjpeg @ 0000022537ace640] bits 85 is invalid
Error while decoding stream #0:1: Invalid data found when processing input
Too many packets buffered for output stream 0:0.
[libmp3lame @ 0000022537ac3480] 3 frames left in the queue on closing
Conversion failed!

相同的命令适用于其他 flac 文件,因此这些 Billy Martin 的歌曲有些东西可以在 vlc 中完美播放,但会导致 ffmpeg 崩溃:

//running this command:


ffmpeg.exe -i "G:\RenderTune broken files\broken flac example\05 - Billy Martin - Phillie Dog.flac" -i "G:\RenderTune broken files\broken flac example\08 - Billy Martin - Stax.flac" -y -filter_complex concat=n=2:v=0:a=1 -c:a libmp3lame -b:a 320k "G:\RenderTune broken files\broken flac example\COMBINED_FILES.mp3"


//results in this output:
[mjpeg @ 0000022537ace640] bits 85 is invalid
Error while decoding stream #0:1: Invalid data found when processing input
Too many packets buffered for output stream 0:0.
[libmp3lame @ 0000022537ac3480] 3 frames left in the queue on closing
Conversion failed!

我在这里上传了损坏的 flac 文件:https://www.mediafire.com/folder/0v9hbfrap727y/broken+flac

如果我对其他 flac 文件运行相同的命令,它可以正常工作:

ffmpeg.exe -i "G:\RenderTune broken files\working flac example\5. Gossip.flac" -i "G:\RenderTune broken files\working flac example\6. Let The Children Play.flac" -y -filter_complex concat=n=2:v=0:a=1 -c:a libmp3lame -b:a 320k "G:\RenderTune broken files\working flac example\COMBINED_FILES.mp3"

我已尝试像许多帖子所建议的那样将-max_muxing_queue_size 9999 添加到我的 ffmpeg 命令中,但这并不能解决问题,有人知道如何防止此错误吗?

[编辑] 我尝试了发布的解决方案之一:

ffmpeg.exe -y -i "G:\RenderTune broken files\working flac example\5. Gossip.flac" -i "G:\RenderTune broken files\working flac example\6. Let The Children Play.flac" -filter_complex "[0:a][1:a]concat=n=2:v=0:a=1[a]" -map "[a]" -c:a libmp3lame -b:a 320k "G:\RenderTune broken files\working flac example\COMBINED_FILES.mp3"

由于不同的错误而崩溃:

[libmp3lame @ 000002453725f3c0] Queue input is backward in time.9x
... lots of these [mp3 @ ..] messages
[mp3 @ 0000024537344400] Application provided invalid, non monotonically increasing dts to muxer in stream 0: 2449071 >= 2445999
[mp3 @ 0000024537344400] Application provided invalid, non monotonically increasing dts to muxer in stream 0: 2449071 >= 2447151
[mp3 @ 0000024537344400] Application provided invalid, non monotonically increasing dts to muxer in stream 0: 2449071 >= 2448303
[flac @ 00000245372d4140] invalid residual315.7kbits/s speed=59.7x
[flac @ 00000245372d4140] decode_frame() failed
Error while decoding stream #1:0: Invalid data found when processing input
size=   24871kB time=00:10:37.09 bitrate= 319.8kbits/s speed=60.5x
video:0kB audio:24869kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: 0.004673%

【问题讨论】:

    标签: npm video ffmpeg node-modules


    【解决方案1】:

    专辑封面图片有问题。通过将输出标签添加到您的 concat 过滤器输出并仅添加 mapping 级联音频来忽略它:

    ffmpeg.exe -y -i "G:\RenderTune broken files\working flac example\5. Gossip.flac" -i "G:\RenderTune broken files\working flac example\6. Let The Children Play.flac" -filter_complex "[0:a][1:a]concat=n=2:v=0:a=1[a]" -map "[a]" -c:a libmp3lame -b:a 320k "G:\RenderTune broken files\working flac example\COMBINED_FILES.mp3"
    

    否则default stream selection 将选择过滤器输出加上损坏的图像,从而导致您的问题中显示的错误。

    【讨论】:

    • 我确实注意到,当我播放音频文件时,文件的元数据专辑封面不会出现在 VLC 中,因此文件有一些损坏的元数据或其他东西是有道理的。我试过你的命令,但现在似乎仍然失败,这个错误[flac @ 00000245372d4140] invalid residual315.7kbits/s speed=59.7x [flac @ 00000245372d4140] decode_frame() failed Error while decoding stream #1:0: Invalid data found when processing input(我会更新我的问题以包含更多信息)
    • @Martin 与05 - Billy Martin - Phillie Dog.flac08 - Billy Martin - Stax.flac 一起为我工作。请提供失败的新输入文件。
    【解决方案2】:

    这解决了我的问题(后来谈到了损坏的标志,但这很容易通过再次重新编码或通过设置来解决)。

    Linux 21.04,ffmpeg ffmpeg 版本 4.2.3

    文件示例:here(几天)

     ffmpeg -fflags +genpts -i peta_alien.ogv  -map 0 -c:v copy -c:a aac -max_muxing_queue_size 4000 peta_alien.avi
    

    【讨论】:

      猜你喜欢
      • 2018-09-16
      • 2020-06-04
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2015-08-20
      • 1970-01-01
      • 2014-09-14
      • 1970-01-01
      相关资源
      最近更新 更多