3

Some video files contain multiple audio tracks. Multiple languages for example. Is there a command line tool which gets information about these audio tracks? Names of the audio tracks would be sufficient.

It should support common formats (mkv, avi,...).

1
  • How could this be done using avconv in the libav-tools Ubuntu package? Can such a thing be done to identify if audio has surround sound encoded?
    – user29020
    Commented Sep 14, 2014 at 16:14

1 Answer 1

5

From the top of my head:

ffmpeg -i <file> 2>&1 | grep 'Audio:'

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .