Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need to parse ffmpegs meta data output but it is different for some reason between a wav and a flac file.

Flac:

(int) 14 => '  Duration: 00:03:18.93, bitrate: 1045 kb/s',
(int) 15 => '    Stream #0:0: Audio: flac, 44100 Hz, stereo, s16',

Wav:

(int) 13 => '  Duration: 00:00:15.00, bitrate: 1411 kb/s',
(int) 14 => '    Stream #0:0: Audio: pcm_s16le ([1][0][0][0] / 0x0001), 44100 Hz, stereo, s16, 1411 kb/s',

I could get the bitrate from the duration line too I think but why is it different? And will there be more differences in future releases? It really sucks that there is no better way to get the information from ffmpeg than to parse it's output. Any better ideas?

Here is my whole ffmpeg output and my parsed result:

http://pastebin.com/4qJfzZNL

share|improve this question

2 Answers

The stream line provides different information because each codec has different parameters. You will need to parse the line and depending on the audio type you will need to understand those parameters that come after it.

You could just use the bitrate in the duration line, but this may be misleading without knowledge of which codec is in use.

share|improve this answer
So in theory every format could have another structure for the stream data? I found ffprobe, it allows me to get the output in a much better parseable way, but please take a look at the stream section line 24 pastebin.com/tSACMJ5N – burzum Jun 8 '12 at 8:49
I can try and get a look later this evening, but I cannot access pastebin from work, sorry. – Rory Alsop Jun 8 '12 at 12:02
Hey thanks for your effort but I'm finally going to use ffprobe, check my answer, it might help or improves your work too. It really makes it easy to parse the data. – burzum Jun 9 '12 at 21:19
up vote 0 down vote accepted

I solved it finally by using ffprobe which comes with ffmpeg.

ffprobe -v quiet -show_streams -show_format -show_error -print_format <format> <file>

See the writers section of the documentation about the formats it supports, I've used json but xml, csv and ini are also supported.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.