Files
whisper-remote/cli/README.md
space c7eda49769
All checks were successful
CI / Backend (push) Successful in 28s
CI / CLI (push) Successful in 16s
Move code directly into backend and cli src
2026-05-24 12:46:40 +02:00

23 lines
578 B
Markdown

# 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
```bash
pip install -e .
export WHISPER_REMOTE=http://127.0.0.1:8000
whisper-remote ./audio.mp3 --model base --language en --output-format txt
```
PowerShell:
```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.