This is my first post here, though I read almost the whole HA website I hope I won't make a duplicated stupid question
I have a heterogeneous audio file list that I want to mux into a single mastroka file. By heterogeneous I mean for example Mp3s + Oggs + Flacs, intermixed. I should precise that every individual file contain several songs (live recording mainly). What I want to do is to have a mkv file that hold all these files (predefined order) and be able to seek each sub song transparently through my favorite audio player.
When I use mkvmerge to mux my files, It happens that there are all synchronized to the virtual 0-time, as if I had a videoless movie with multitrack audio. I can't find any way to have them in sequential order, one track after each other. To simplify, I tried to zip them all, and wrap then into mkv with a cue-sheet... this works, except that small garbage at the end of each track which is normal since I concatenate different track. It is dirty BUT it works more or less (I did that only with mp3s not heterogeneous format).
My questions are, is zipping a clean way for concatenate heterogeneous audio format? Have I missed something or muxing physically independent audio streams into matroska will always result in parallel multitrack audio output?
Actually I motivate this by the fact that I want to be able to recover those track perfectly so that a recompression is not possible. I neither want to go for lossless, since I want to keep the good compression ratio.
Any ideas is welcome...