npm ffmpeg错误:为输出流缓冲的数据包太多

cld4siwp  于 2023-10-19  发布在  其他
关注(0)|答案(2)|浏览(129)

我正在开发一个使用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文件,所以这些比利马丁的歌曲可以在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命令像许多职位建议,但并没有解决它,有人知道如何防止这种错误?

**[edit]**我尝试了其中一个解决方案:

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%
dkqlctbz

dkqlctbz1#

专辑封面图片有问题。通过在concat filter输出中添加一个输出标签来忽略它,并且只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"

否则,默认的流选择将选择过滤器输出加上损坏的图像,导致您的问题中显示的错误。

2ledvvac

2ledvvac2#

这解决了我的问题(后来说关于破碎的标志,但这是很容易修复的重新编码再次或发挥设置)。
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

相关问题