Microphone to Text App is a simple desktop application built with Python and Tkinter that records audio from your microphone, transcribes it into text using OpenAI Whisper, and provides convenient options to save and copy the transcription.
The app is ideal for quick note-taking, meeting transcription, or speech-to-text workflows β all from your local machine.
- π€ Live Microphone Recording β Capture audio directly from your system microphone.
- π Accurate Transcription β Uses the Whisper large model for high-accuracy speech-to-text.
- πΎ Automatic Saving β Transcriptions are saved as timestamped
.txt
files in atextwhisper
folder. - π Clipboard Copy β Instantly copy transcribed text to your clipboard.
- π₯ Simple GUI β User-friendly interface powered by Tkinter.
You will need:
- Python 3.9+
- OpenAI Whisper
- sounddevice
- numpy
- pyperclip
- Tkinter (included in most Python installations)
- Clone this repository:
git clone https://github.com/yourusername/microphone-to-text-app.git cd microphone-to-text-app