Generate a voiceover (TTS)
neuron_studio_voiceoverTurn a script into a hosted voiceover audio URL, optionally with caption cues synced to the speech. Returns { url, durationSeconds, cues? }. Then place it with neuron_studio_apply: add_audio({url, label:'Voiceover', durationSeconds}) and add_captions({cues}). This makes fully-voiced reels possible from a prompt. Needs a TTS key on the org (captions also need a transcription key).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| text | Yes | The script to speak. | |
| voice | No | Voice id/name for the engine (else the org default). | |
| engine | No | TTS engine (default openai). | |
| withCaptions | No | Also transcribe the audio into synced caption cues. |