Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Good python library for generating audio files? [closed]

Tags:

python

audio

mp3

Can anyone recommend a good library for generating an audio file, such as mp3, wav, or even midi, from python?

I've seen recommendations for working with the id tags (song name, artist, etc) in mp3 files, but this is not my goal.

like image 861
Tyler Avatar asked Sep 05 '08 07:09

Tyler


People also ask

Is Python good for audio processing?

Python has some great libraries for audio processing like Librosa and PyAudio. There are also built-in modules for some basic audio functionalities. It is a Python module to analyze audio signals in general but geared more towards music. It includes the nuts and bolts to build a MIR(Music information retrieval) system.

Which Python library is mostly used?

NumPy. NumPy is one of the most widely used open-source Python libraries, focusing on scientific computation. It features built-in mathematical functions for quick computation and supports big matrices and multidimensional data.

Is there a sound module in Python?

playsound is a Python module by which users can play sound in a single line of code. It is a cross - platform module which is a single function without any dependencies for playing sounds and audios. For example: from playsound import playsound.

Which Python libraries are most efficient for data processing?

Pandas (Python data analysis) is a must in the data science life cycle. It is the most popular and widely used Python library for data science, along with NumPy in matplotlib.


1 Answers

See http://wiki.python.org/moin/Audio/ and http://wiki.python.org/moin/PythonInMusic, maybe some of the projects listed there can be of help.

Also, Google is your friend.

like image 147
codeape Avatar answered Oct 16 '22 20:10

codeape