I hope someone knows a link to point me to here.

I'm converting different video and audio formats using ffmpeg. I want to only let files with file extensions be converted that are supported by ffmpeg. The supported formats are found here: http://ffmpeg.org/general.html#SEC4

My question: is there a list of file extensions somewhere? I don't want to research for every format which file extensions might be used for that. Or is there a pain-free format-recognition library or class for C#/.NET available, that can scan for a audio/video format?

link|improve this question

1  
Multimedia files are often container files which can contain many different possible codecs. Thus you'd sometimes have to look inside the file to see what codecs are being used, to be sure - just looking at the file extension wouldn't necessarily be enough. – Robin Green Apr 13 '11 at 6:58
Ah okay. So is there a (hopefully painless) way to recognize the codec inside the container and to determine if it can be used by ffmpeg in C#/.NET? – Akku Apr 13 '11 at 7:01
feedback

2 Answers

up vote 0 down vote accepted

If you call ffmpeg with just the input file and no other parameters, it will give you information on the contained streams, if it can read them.

ffmpeg -i input.avi

See this answer about identifying files before encoding.

link|improve this answer
Thanks ... sad that there's no programmatic way - but this will work. – Akku Apr 13 '11 at 12:18
feedback

Can't you just programmatically execute

ffmpeg -i filename -dframes 0 -vn -aframes 0 dummy.avi

and read the output and see if it says "Unsupported codec" or something like that at the end?

That encodes zero audio frames and nothing else into a dummy file. Actually you might need to tweak the options a little, because I'm not sure whether that will check if the video codec is supported.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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