Files
whisper-remote/cli
Luna 2b1c26781e
All checks were successful
CI / Backend (pull_request) Successful in 32s
CI / CLI (pull_request) Successful in 10s
cli: surface HTTP status and body on backend errors
2026-05-25 17:18:31 +00:00
..

whisper-remote

Local CLI that forwards media files to a remote whisper-remote-backend server.

Package layout is flat in this folder: src/main.py.

Run

pip install -e .
export WHISPER_REMOTE=http://127.0.0.1:8000
whisper-remote ./audio.mp3 --model base --language en --output-format txt

PowerShell:

$env:WHISPER_REMOTE = "http://127.0.0.1:8000"
whisper-remote .\audio.mp3 --model base --language en --output-format txt

Use --to-file to save the returned transcript locally. Without it, the CLI prints the transcript body to stdout.