transcribe_to_file
Transcribe audio into SRT, VTT, or TXT files. Choose model size, language, and optional translation to English for accessible subtitles or transcripts.
Instructions
[EXPERIMENTAL] Transcribe audio and export to a subtitle or text file. Requires separate setup (pip install faster-whisper).
ALWAYS tell the user where the file will be saved BEFORE starting. If user doesn't specify a path, call get_default_transcription_folder for a real path.
Runs in BACKGROUND - returns a job_id immediately.
Args: path: Absolute path for the output file (e.g. "C:/Users/You/Documents/transcript.srt") format: Output format - "srt", "vtt", or "txt" model_size: Whisper model - "tiny", "base", "small", "medium", "large-v3" language: ISO language code (e.g. "en") or None for auto-detect task: "transcribe" (spoken language) or "translate" (always English)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes | ||
| task | No | transcribe | |
| format | No | srt | |
| language | No | ||
| model_size | No | small |