I need to decode an MP3 file with Python. What is a good library which can do that?
I looked at PyMedia but the project seems dead and it didn’t worked on MacOSX. Then I found out about pyffmpeg but I didn’t got it working on MacOSX so far.
Any suggestion?
I did try an
easy_installof PyMedia on OS X / Fink, and it did not work because it could not find the source. This module does look quite dead…One way of decoding MP3 is to call
ffmpegwithout going through pyffmpeg, but by calling ffmpeg using the standard subprocess module instead.