mirror of
https://github.com/chidiwilliams/buzz.git
synced 2026-03-14 22:55:46 +01:00
No description
- Python 99%
- Makefile 0.8%
- Inno Setup 0.2%
| .github/workflows | ||
| .vscode | ||
| .gitignore | ||
| buzz.png | ||
| Buzz.spec | ||
| gui.py | ||
| LICENSE | ||
| main.py | ||
| Makefile | ||
| poetry.lock | ||
| pyproject.toml | ||
| README.md | ||
| transcriber.py | ||
Buzz
Buzz transcribes audio from your computer's microphones to text using OpenAI's Whisper.
Requirements
To set up Buzz, first install ffmpeg (needed to run Whisper).
# on Ubuntu or Debian
sudo apt update && sudo apt install 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
Build
To build Buzz, run:
pip install -r requirements.txt
make buzz
