Hi
I am new to this forum so excuse me if i have posted in the wrong area or the question is too basic.
I have a file that has come from a dvcpro 50 tape and comes out of a Quantel video editing system as dv5p video codec with multiple lpcm audio tracks all wrapped up as a .mov
From time to tiime I sell 15min news stories to Asia and it is a problem sending those files to them as they are 6-8gb. I can post a media info dump if interested.
One of the isssues I have is converting these files to h264 while also preserving the 3 or 4 audio tracks. I don't seem to get how to stop ffmpeg merging the 3-4 audio into one output audio track.
These commands work from your static builds but they all merge it into one audio track
ffmpeg -i file:input.mov -vcodec libx264 -an output.mov (no audio)
ffmpeg -i file:input.mov -vcodec libx264 -acodec copy -ac 4 output.mov (keeps pcm)
or
ffmpeg -i file:input.mov -vcodec libx264 -ac 6 -acodec aac -strict experimental output2.mov (to put out as aac)
Again sorry if this is too basic