Windows-only Electron app for recording a short audio clip and transcribing it
via Replicate (model: openai/gpt-4o-transcribe). No live transcription.
npm installUse a local .env file for development. The file is ignored by Git and will
not be pushed. Copy the template once and fill in your token:
copy .env.example .envThen edit .env and set your Replicate token:
REPLICATE_API_TOKEN=your-token
If you build/install the app, you can also set the token directly in the UI
(Replicate API-Key). The value is stored locally and is not shown after save.
Alternatively, set the environment variable at the system/user level.
PowerShell (current session):
$env:REPLICATE_API_TOKEN="your-token"PowerShell (persist for your user):
setx REPLICATE_API_TOKEN "your-token"npm startnpm run makeThis creates Windows Squirrel artifacts under out/make/squirrel.windows/.
- Choose
Sprache(Germandeor Englishen). - Select a microphone.
- Click Aufnehmen, speak, then Stop.
- Wait for Transcribing… to finish and copy the result.
- No live transcription (only after recording stops).
- Audio is recorded as WebM (Opus) when supported.
- Requires a working Replicate token and network access.