Home > Software design >  What's the ideal module for playing and pausing audio in Python?
What's the ideal module for playing and pausing audio in Python?

Time:05-01

I had previously considered using the 'playsound' module but found out it only plays audio, it can't pause it.

Are there any recommendations on modules I can use?

CodePudding user response:

It depends on your needs. Check this page: https://wiki.python.org/moin/Audio

I used simpleaudio recently and it is extremely easy to use, but limited (and while it can stop playing sounds, does not have pausing by default).

  • Related