Open NeoFahrenheit opened 7 months ago
Make sure you are using the last faster-whisper version. Check what PyAV version is there too.
faster-whisper is on 1.0.1. Couldn't find a package named PyAV. I installed the version 12.0.5. Problem persists.
Let me know if you need more information. :) Thanks for the help!
Try to downgrade it, I don't have other ideas...
pip install --force-reinstall av==11.0.0
Try to downgrade it, I don't have other ideas...
pip install --force-reinstall av==11.0.0
It didn't work. What I tried was to use those generic audio converter websites to convert my .m4a to .mp3 and it worked nicely!
Now, this is what I dont understand. I can process local .m4a files with no problem, but not with absolute path. But .mp3 works fine with absolute path.
Maybe is there something related to my project?
I changed my hugging face cache to a folder in /Users/lmonteir/.HandySpeechBot/models.
It is a virtual env, created with python3 -m venv
I'm just confused, but now I have a workaround, which is nice.
Thank you for the support!
Hi, I'm on a mac and I am trying to transcibe a audio file, extracted with yt_dlp. The problem is WhisperModel can't find or correctly process the audio files outside the code working directory.
This is the error stack:
Now, if I put the files in the current script folder, it runs fine. I have tried putting double quotes between the filename and the absolute path, but I didn't work. Anything that I might be missing?