Skip to content
Advertisement

FFmpeg not copying all audio streams

I’m having trouble getting ffmpeg to copy all audio streams from a .mp4 file. After hours of searching online, it appears this should copy all streams (as shown in example 4 here):

JavaScript

in.mp4 contains 3 streams:

  • Video
  • Audio track 1
  • Audio track 2

out.mp4 (which should be identical to in.mp4) contains only 2 streams:

  • Video
  • Audio track 1

FFmpeg does appear to correctly identify all 3 streams, but doesn’t copy all of them over. Output from FFmpeg:

JavaScript

Edit: Output from ffmpeg -v 9 -loglevel 99 -i in.mp4:

JavaScript

Edit 2 (solved): I managed to find the correct syntax from this ticket. For any others that are interested, the correct syntax is:

ffmpeg -i in.mp4 -vcodec copy -c:a copy -map 0 out.mp4

This will copy all streams.

Advertisement

Answer

Apparently this is a popular question, so I’m posting my solution as an answer (was previously a comment reply) so that others can see.

I managed to find the correct syntax from this ticket. The correct syntax is:

JavaScript

This will copy all 3 streams.

User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement