Audio Edit

Audio Edit performs targeted audio inpainting—modify portions of an existing recording without rerecording the entire clip.

Workflow

  1. Create an edit with the source audio, transcripts, and target voice.
  2. Poll for completion using the returned UUID.
  3. Download the result audio from result_audio_url once available.

Resource Schema

1interface AudioEdit {
2 uuid: string;
3 voice_uuid: string;
4 original_transcript: string;
5 target_transcript: string;
6 input_audio_url: string;
7 result_audio_url: string | null;
8}