Python - MP3 Libraries

2

I'm doing a project based on the Python language and it requires good performance in Audio (MP3) playback. Currently I'm using PyGame with its pygame.mixer.music to be able to play the songs, however this lib is very weak and reclusive, which does not allow advancing in software development.

I would like to know if there are better libraries for this case, and that allows me to quickly and without complications, calculate durability time and have greater volume control in applications, among others.

    
asked by anonymous 12.05.2017 / 18:39

1 answer

1

Well, I still have not understood for sure what your purpose is with the project. But when it comes to audio, Python is still a bit scarce. However, there are still some libs that are competent for audio playback and / or recording such as: PySoundCard , PyMedia , playsound , python-audio-tools , PyAudio or by PyGlet . Try to use and learn the one that most suits your needs within that options.

    
08.06.2017 / 07:42