Hello,
Just in case, I give you the workaround command line, since I have the same problem with this kind of files (MKV MULTI), I handles them without a long transcoding operation with mkvmerge.
The operation take few seconds on my P4 with Linux (and few more to do the same in W7 on a i7) (about 20 sec).
- Code:
mkvmerge -o reordered.mkv --video-tracks 0 --audio-tracks 2 original.mkv
This avoid synchronisation issues with, by example, AAC VBR (and certainly most VBR sound format) when you demux / mux ...
I noticed, the tracks seems not be identified the same way in Linux and Windows even if
mkvinfo tells the same.
*******
J'ai le même problème avec cette sorte de fichier (Les MKV MULTI) et je le gère sans un long transcodage en supprimant la 1ere piste audio (la piste EN est généralement la première des audios et la FR la seconde : pour être sûr utilisez mkvinfo) et en reconstruisant juste l'index. Cela évite les problèmes de synchro avec les formats audio VBR comme l'AAC que l'on peut rencontrer en demuxant / remuxant ...
L'opération prends quelques seconde sur un P4 sous Linux (et juste un peu plus sur un i7 sous Windows 7)
- Code:
mkvmerge -o reordered.mkv --video-tracks 0 --audio-tracks 2 original.mkv
...