TaylorSMarks / playsound

Pure Python, cross platform, single function module with no dependencies for playing sounds.
Other
517 stars 114 forks source link

Releasing new Pypi version #131

Open Vuizur opened 1 year ago

Vuizur commented 1 year ago

Hello,

first of all thank you for developing this library! Audio is difficult 🙈.

I think it would be a great idea to release a new version on Pypi, because this code for example:

import playsound
import logging

if __name__ == "__main__":
    logging.basicConfig(level=logging.DEBUG)
    FILENAME = "ROME – Parlez-Vous Hate (Full Song).mp3"
    playsound.playsound(FILENAME)

works on the Git version, but not in 1.3.0 released on Pypi due to the special characters in the string. (It causes Error 305.)

Have a great day!

sjmikler commented 5 months ago

You might want to check out playsound3 that I forked and refactored to make it more robust and compliance with the new PEP.