Hi @Mal, It appears you're facing a FileNotFoundError with ffmpeg while using OpenAI Whisper.
To troubleshoot, first try installing ffmpeg as a Python module with `pip install ffmpeg` in your Python environment. Next, ensure ffmpeg is accessible by running `ffmpeg -version` in the Command Prompt (or terminal). If not, download the ffmpeg executable from the official website, save it in a local directory, add the folder containing ffmpeg.exe to your PATH environment variable, and test again. Verify the path to ffmpeg on macOS with `which ffmpeg` and on Windows by checking your environment variables. Additionally, disable any interfering antivirus software and ensure the audio file you're processing is accessible and in the correct directory. Following these steps should help resolve the issue with ffmpeg and Whisper.