如何从 mkv 创建 mkv 文件以及从终端创建 mka 文件

如何从 mkv 创建 mkv 文件以及从终端创建 mka 文件

我有一堆 mkv 文件,每个文件都有一个同名的 mka 文件。我想合并它们。我可以使用 mkvmerge-gui 逐个进行合并,但我想从终端进行合并,因为脚本可以为每个文件执行此操作。

我尝试过这个:

mkvmerge -o 001.mkv EP01.mkv +EP01.mka

我得到了这个:

mkvmerge v7.1.0 ('Good Love') 64bit built on Jul 27 2014 13:10:18
'EP01.mkv': Using the demultiplexer for the format 'Matroska'.
'EP01.mka': Using the demultiplexer for the format 'Matroska'.
'EP01.mkv' track 0: Using the output module for the format 'AVC/h.264'.
'EP01.mkv' track 1: Using the output module for the format 'FLAC'.
'EP01.mkv' track 2: Using the output module for the format 'FLAC'.
'EP01.mka' track 0: Using the output module for the format 'FLAC'.
'EP01.mka' track 1: Using the output module for the format 'FLAC'.
'EP01.mka' track 2: Using the output module for the format 'AC3'.
'EP01.mka' track 3: Using the output module for the format 'PGS'.
'EP01.mka' track 4: Using the output module for the format 'PGS'.
No append mapping was given for the file no. 1 ('EP01.mka'). A default mapping of 1:0:0:0,1:1:0:1,1:2:0:2,1:3:0:3,1:4:0:4 will be used instead. Please keep that in mind if mkvmerge aborts with an error message regarding invalid '--append-to' options.
Error: The file no. 0 ('EP01.mkv') does not contain a track with the ID 3, or that track is not to be copied. Therefore no track can be appended to it. The argument for '--append-to' was invalid.

感谢您的帮助!

答案1

+命令中不需要符号。它的含义与你想象的完全不同。

mkvmerge -o output.mkv input.mkv input.mka

这应该能帮到你。

加号将第二个文件的流附加到第一个文件。因此,如果您有两个视频文件,并且想要制作一个文件,首先播放文件 1 中的视频,然后在同一流上播放文件 2 中的视频,则可以使用加号。错误基本上告诉您它无法在您的 .mka 文件中找到任何视频,并且没有任何内容可以附加。

相关内容