0

I'm looking to make an audio editor using Python for a project in which I'm not allowed to use modules that need be downloaded (I can only do a simple import ).

I want to be able to have users upload a file (preferably in mp3 or some other common format for all operating systems) and be able to play back and edit it. I also need to write out a mp3 file with the new audio.

Would this be feasible in Python 2.7 without outside modules?

EDIT: This will be hosted online if that makes any difference.

RainyRun
  • 53
  • 1
  • 6

1 Answers1

0

Would any of these audio modules help?

audioop is a built-in module to manipulate raw audio data. It requires a format such as .WAV but you could either convert that separately or in the program.

If you want to simply upload wav files to be used with audioop, consider looking at the wave module.