使用 avconv,当重新混合为 MKV 时,有没有办法修复打包的 AVI 输入文件?

使用 avconv,当重新混合为 MKV 时,有没有办法修复打包的 AVI 输入文件?

由于 Plex 服务器和松下电视之间存在兼容性错误,使其正常工作的唯一方法是将所有内容重新混合为 MKV,直接复制所有流(视频、音频、字幕)

看起来很简单:

avconv -i "input.avi" -c copy "output.mkv"

除了:

avconv version 0.8.6-4:0.8.6-0ubuntu0.12.04.1, Copyright (c) 2000-2013 the Libav developers
  built on Apr  2 2013 17:00:59 with gcc 4.6.3
[mpeg4 @ 0x8422140] Invalid and inefficient vfw-avi packed B frames detected
Input #0, avi, from 'input.avi':
  Metadata:
    encoder         : VirtualDubMod 1.5.4.1 (build 2117/release)
  Duration: 00:27:38.52, start: 0.000000, bitrate: 1173 kb/s
    Stream #0.0: Video: mpeg4 (Advanced Simple Profile), yuv420p, 640x352 [PAR 1:1 DAR 20:11], 25 tbr, 25 tbn, 25 tbc
    Stream #0.1: Audio: mp3, 48000 Hz, stereo, s16, 132 kb/s
File 'output.mkv' already exists. Overwrite ? [y/N] y
Output #0, matroska, to 'output.mkv':
  Metadata:
    encoder         : Lavf53.21.1
    Stream #0.0: Video: mpeg4, yuv420p, 640x352 [PAR 1:1 DAR 20:11], q=2-31, 1k tbn, 25 tbc
    Stream #0.1: Audio: libmp3lame, 48000 Hz, stereo, 132 kb/s
Stream mapping:
  Stream #0:0 -> #0:0 (copy)
  Stream #0:1 -> #0:1 (copy)
Press ctrl-c to stop encoding
[matroska @ 0x8422cc0] Can't write packet with unknown timestamp
av_interleaved_write_frame(): Invalid argument

相关的陷阱如下:

[mpeg4 @ 0x8422140] Invalid and inefficient vfw-avi packed B frames detected#
<snip>
[matroska @ 0x8422cc0] Can't write packet with unknown timestamp
av_interleaved_write_frame(): Invalid argument

我看不到解压 B 帧的选项(或者构建 VBR 时间图?我们需要 avconv 中的这些吗?)

有没有办法做到这一点,例如在 avidemux 中?

答案1

一种解决方法是先转换为 .mp4:

avconv -i input.avi -c copy temp.mp4
avconv -i temp.mp4 -c copy output.mkv
rm temp.mp4

遗憾的是,人们无法简单地在 avconv 实例之间传输 mp4 格式:“[mp4 @ 0x80846c0] muxer 不支持不可寻址输出”

答案2

作为ffmpeg bugtracker 上的这张票 #1979最简单的解决方案是修复此错误或手动添加-fflags +genpts到命令行。

即改变

ffmpeg -i inputfile_that_cant_be_muxed_into_mkv.ext -c copy out.mkv

ffmpeg -fflags +genpts -i inputfile_that_cant_be_muxed_into_mkv.ext -c copy out.mkv

答案3

感谢 Andreas Cadhalpunffmpeg现在有了新的过滤器:(mpeg4_unpack_bframes參考)。这将允许您删除以下消息:Invalid and inefficient vfw-avi packed B frames detected

使用方法非常简单:

ffmpeg -i INPUT.avi -codec copy -bsf:v mpeg4_unpack_bframes OUTPUT.avi

相关内容