Im trying to open a file using whisper with this code:
import whisper
model = whisper.load_model("base")
result = model.transcribe("output.wav")
Im already download FFMPEG and already put that in the alias PATH, but im also getting the error:
FileNotFoundError: [WinError 2] The system cannot find the specified file
The error is in:
result = model.transcribe("output.wav")
im sure this file exist in this path.