Dadangdut33 / Speech-Translate

A realtime speech transcription and translation application using Whisper OpenAI and free translation API. Interface made using Tkinter. Code written fully in Python.
MIT License
436 stars 55 forks source link

[BUG] #18

Closed DavorZg closed 1 year ago

DavorZg commented 1 year ago

After running the application I get issue: FileNotFoundError: [WinError 2] The system cannot find the file specified

image

Dadangdut33 commented 1 year ago

This is same as #12 you will need to install ffmpeg first to fix this.

Here are the instructions for automatic installation:

# on Ubuntu or Debian
sudo apt update && sudo apt install ffmpeg

# on Arch Linux
sudo pacman -S ffmpeg

# on MacOS using Homebrew (https://brew.sh/)
brew install ffmpeg

# on Windows using Chocolatey (https://chocolatey.org/)
choco install ffmpeg

# on Windows using Scoop (https://scoop.sh/)
scoop install ffmpeg

alternatively you can download it and add it to your system PATH manually

DavorZg commented 1 year ago

Thank you