You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've encountered an issue with the pydub library when using Python 3.13.1 on Windows. The library fails with a ModuleNotFoundError related to pyaudioop, which appears to be a custom module within pydub. This issue seems to be caused by the deprecation of certain standard library modules in Python 3.13.
from pydub import AudioSegment
audio = AudioSegment.from_mp3("example.mp3")
audio.export("example.wav", format="wav")
ModuleNotFoundError: No module named 'audioop'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
ModuleNotFoundError: No module named 'pyaudioop'
### CPython versions tested on:
3.10
### Operating systems tested on:
Windows
The text was updated successfully, but these errors were encountered:
Bug report
Bug description:
I've encountered an issue with the pydub library when using Python 3.13.1 on Windows. The library fails with a ModuleNotFoundError related to pyaudioop, which appears to be a custom module within pydub. This issue seems to be caused by the deprecation of certain standard library modules in Python 3.13.
The text was updated successfully, but these errors were encountered: