-
Problem with ffmpeg soundstream
Hello guys
i have a problem with ffmpeg. I only want to change the h264 level to 4.1
I looked for the syntax and found one:ffmpeg -i abm.mkv -vcodec copy -acodec copy -vbsf h264_changesps=level=41 abmmuss.mkvffmpeg take the file “abm.mkv” copy the sound and video stream, change the level to 4.1 and write the file “abmmuss.mkv”
Here is my problem: I have a german sound stream in the input file and a english sound stream. In the output file is only the english one inside. But i want to have both.
So i looked after a syntax and found “-map 0”.
I put it in like this:
ffmpeg -i abm.mkv -vcodec copy -acodec copy -map 0 -vbsf h264_changesps=level=41 abmmuss.mkv
But it doesn’t work.
How can i keep both streams?Thank you very much for your help!