Search code examples
pythongoogle-app-enginevideomp3

Convert video(any type) to audio -mp3 format- using python


I'm working on a project, using Python running on Google App Engine. The project must allow users to upload video file then convert these files into mp3 audio file. Is there a way to convert this video to mp3/wav audio?

Could anyone offer a solution to this? Thanks in advance.


Solution

  • You don't want todo this in Python, video convert requires working native modules which the App Engine doesn't support.
    You can try to work 3rd party web service that do the convert for you, or send the convert task to an external server.