Summary
Hi there, iĀ“ve been for a couple of hours trying to create a simple app that requires ffmpeg but every single time i get FileNotFoundError: [Errno 2] No such file or directory: āffmpegā IĀ“ve tried everything, installing via pip, adding a packages.txt file and no clue.
Link for the repo if any clue
Whisper depends on ffmepg
For whisper to work, you only need ffmpeg
in your packages.txt
file. Remove everything else related to ffmpeg
from your requirements.txt
and main.py
files, you donāt use it and you donāt need it.
Aside, if you plan to deploy on streamlit cloud, no whisper model beyond small
will work, because these models have a massive memory footprint.
Should the same solution work for whisper API? Iāve already ffmpeg
in packages.txt
but still have the following error: DownloadError: ERROR: Postprocessing: ffprobe and ffmpeg not found. Please install or provide the path using --ffmpeg-location
Here is my repo: GitHub - ahmad-alismail/Podcast_Analyzer