No description
  • Python 99%
  • Makefile 0.8%
  • Inno Setup 0.2%
Find a file
Chidi Williams 655975917e Fix styling
2022-09-26 02:44:27 +01:00
.vscode Add launch tasks 2022-09-25 15:56:21 +01:00
.gitignore Add transcriber and Makefile 2022-09-24 19:08:06 +01:00
Buzz.spec Add chunk drop factor and more logs 2022-09-25 17:46:39 +01:00
gui.py Fix styling 2022-09-26 02:44:27 +01:00
main.py Refactor GUI components 2022-09-25 15:56:13 +01:00
Makefile Update build files 2022-09-24 19:58:33 +01:00
README.md Fix styling 2022-09-26 02:44:27 +01:00
requirements.txt Add requirements.txt file 2022-09-25 10:41:56 +01:00
transcriber.py Fix styling 2022-09-26 02:44:27 +01:00

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