You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
tinysteno record --whisper-device cuda --whisper-compute-type float16
279
+
```
280
+
281
+
### API — OpenAI Whisper API
282
+
283
+
Transmits audio to a remote Whisper-compatible API endpoint. Useful for machines without a GPU or when you need a larger model than local memory supports.
284
+
285
+
```yaml
286
+
transcription_backend: api
287
+
whisper_api_key: "sk-..." # falls back to api_key if unset
288
+
whisper_api_model: "whisper-large-v3" # defaults to whisper-1
289
+
```
290
+
291
+
The API backend supports the same features as the local backend:
292
+
293
+
- Mono transcription
294
+
- Stereo diarization (two API calls, one per channel)
295
+
- Language detection fallback
296
+
- Progress callbacks
297
+
298
+
Audio files are uploaded to the configured API endpoint. At ~30-40 MB per hour of recording, consider privacy implications when using a cloud API.
0 commit comments