No description
  • Python 99%
  • Makefile 0.8%
  • Inno Setup 0.2%
Find a file
Chidi Williams 71fc760428 Add CI badge
2022-09-27 02:37:06 +01:00
.github/workflows Upload pyinstaller artifacts 2022-09-27 02:35:14 +01:00
.vscode Add GitHub workflow 2022-09-27 02:26:13 +01:00
.gitignore Add transcriber and Makefile 2022-09-24 19:08:06 +01:00
buzz.png Update photo 2022-09-27 02:26:03 +01:00
Buzz.spec Switch to sounddevice 2022-09-26 20:13:40 +01:00
gui.py Use native threads to manage transcriber 2022-09-27 02:08:29 +01:00
LICENSE Create LICENSE 2022-09-26 00:49:28 +01:00
main.py Switch to sounddevice 2022-09-26 20:13:40 +01:00
Makefile Add GitHub workflow 2022-09-27 02:26:13 +01:00
poetry.lock Add GitHub workflow 2022-09-27 02:26:13 +01:00
pyproject.toml Add GitHub workflow 2022-09-27 02:26:13 +01:00
README.md Add CI badge 2022-09-27 02:37:06 +01:00
transcriber.py Use native threads to manage transcriber 2022-09-27 02:08:29 +01:00

Buzz

Buzz

MIT License CI

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