Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Move off use of pydub, to support Python 3.13? #24

Open
FranklinChen opened this issue Feb 10, 2025 · 0 comments
Open

Move off use of pydub, to support Python 3.13? #24

FranklinChen opened this issue Feb 10, 2025 · 0 comments

Comments

@FranklinChen
Copy link
Member

➜  ~ python3.12 -c "import audioop; print('audioop is available')"
<string>:1: DeprecationWarning: 'audioop' is deprecated and slated for removal in Python 3.13
audioop is available
➜  ~ python3.13 -c "import audioop; print('audioop is available')"
Traceback (most recent call last):
  File "<string>", line 1, in <module>
    import audioop; print('audioop is available')
    ^^^^^^^^^^^^^^
ModuleNotFoundError: No module named 'audioop'

See jiaaro/pydub#815

https://github.com/jiaaro/pydub has not been updated in 3 years jiaaro/pydub#827 . Maybe it's time to move off using it, and finding an alternative library? Either that or use one of the workaround discusses in the pydub issues.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant