from podcastfy.client import generate_podcast
generate_podcast("https://www.youtube.com/watch?v=dQw4w9WgXcQ")
(venv) devesh@Deveshs-Laptop podcai % python3 app.py
Traceback (most recent call last):
File "/Users/devesh/Desktop/devesh/podcai/path/to/venv/lib/python3.13/site-packages/pydub/utils.py", line 14, in <module>
import audioop
ModuleNotFoundError: No module named 'audioop'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/Users/devesh/Desktop/devesh/podcai/app.py", line 1, in <module>
from podcastfy.client import generate_podcast
File "/Users/devesh/Desktop/devesh/podcai/path/to/venv/lib/python3.13/site-packages/podcastfy/client.py", line 15, in <module>
from podcastfy.text_to_speech import TextToSpeech
File "/Users/devesh/Desktop/devesh/podcai/path/to/venv/lib/python3.13/site-packages/podcastfy/text_to_speech.py", line 14, in <module>
from pydub import AudioSegment
File "/Users/devesh/Desktop/devesh/podcai/path/to/venv/lib/python3.13/site-packages/pydub/__init__.py", line 1, in <module>
from .audio_segment import AudioSegment
File "/Users/devesh/Desktop/devesh/podcai/path/to/venv/lib/python3.13/site-packages/pydub/audio_segment.py", line 11, in <module>
from .utils import mediainfo_json, fsdecode
File "/Users/devesh/Desktop/devesh/podcai/path/to/venv/lib/python3.13/site-packages/pydub/utils.py", line 16, in <module>
import pyaudioop as audioop
ModuleNotFoundError: No module named 'pyaudioop'
(venv) devesh@Deveshs-Laptop podcai % python3 --version
Python 3.13.0
I am on python version 3.13.0 and when I try to run below code
I get the below error
I've tried google colab as well still the same issue, anyone else facing this?