-
-
Notifications
You must be signed in to change notification settings - Fork 33.1k
Closed as not planned
Labels
type-bugAn unexpected behavior, bug, or errorAn unexpected behavior, bug, or error
Description
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.
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
Metadata
Metadata
Assignees
Labels
type-bugAn unexpected behavior, bug, or errorAn unexpected behavior, bug, or error