FileNotFoundError: [Errno 2] No such file or directory: 'ffmpeg'
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-29-2024 09:07 PM
import whisper
import ffmpeg
model = whisper.load_model("base")
transcription = model.transcribe("dbfs:/FileStore/Call_Center_Conversation__03.mp3")
print(transcription["text"])
FileNotFoundError: [Errno 2] No such file or directory: 'ffmpeg'
I have imported the necessary packages but also the issue is persisting, I have also tired installing the ffmpeg package then also the issue hasn't been resolved
%pip install ffmpeg-python
Please do guide to resolve the issue
0 REPLIES 0

