views:

338

answers:

2

I'm looking for a library similar to FFDshow to help me convert .flv to .avi format and possibly do more. I understand that I can do this via VLC player, but I'd rather do it manually with Python (and in bulk).

Similar to:
http://stackoverflow.com/questions/1233685/media-conversion-library-plugin-preferably-php
http://stackoverflow.com/questions/2123435/python-automate-ffmpeg-conversion-from-upload-directory

+1  A: 

pygst with the right plugins can read .flv files (and write other formats).

Ignacio Vazquez-Abrams
Checking it out ..
Israel ANY
A: 

Use ffmpeg. You can invoke it from python, if you want to.

ffmpeg -i in.flv -f avi -vcodec mpeg4 -acodec libmp3lame out.avi

Full ducumentation for converting files with ffmpeg can be found here.

gnud
Thanks. I love the documentation.
Israel ANY