Simple few lines, using pydub.
The wav line works, the mp3 line doesn't.
I do have ffmpeg installed (today), and included inthe path, and restarted PyCharm.
If I type ffmpeg in cmd window, all ok.
Not sure why one works an the other doesn't.
Any suggestions appreciated.
from pydub import AudioSegment
sound1 = AudioSegment.from_wav("C:\\multimedia\\audio_temp\\1.wav")
sound2 = AudioSegment.from_mp3("C:\\multimedia\\audio_temp\\1.mp3")
...
Error back from mp3 line is:
...
File "C:/Users/.../PycharmProjects/Audio1/audio_03.py", line 11, in <module>
sound1 = AudioSegment.from_mp3("C:\\multimedia\\audio_temp\\1.mp3")
...