Como criar um arquivo mkv de um mkv e um arquivo mka do termial

0

Eu tenho um monte de arquivos mkv e um arquivo mka para cada um com o mesmo nome. Eu gostaria de mesclá-los. Eu posso fazer isso com o mkvmerge-gui um por um, mas eu quero fazer isso do terminal, porque um script poderia fazer isso para cada arquivo.

Eu tentei isso:

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

E eu entendo isso:

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.

Obrigado pela sua ajuda!

    
por user230682 14.10.2014 / 00:18

1 resposta

0

Você não precisa do sinal + no comando. Significa algo bem diferente do que você pensa.

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

Isso deve fazer o truque para você.

O sinal de adição anexa os fluxos do segundo arquivo ao primeiro. Então, se você tivesse dois arquivos de vídeo e quisesse criar um único arquivo que reproduz primeiro o vídeo do arquivo1 e depois o vídeo do arquivo2 no mesmo fluxo, você usaria o sinal de adição. O erro basicamente diz que não é possível encontrar nenhum vídeo em seu arquivo .mka e não tem nada para acrescentar.

    
por v010dya 10.11.2014 / 20:31