Create an Audio Edit

HTTP Request

POST https://app.0xIQ.ai/api/v2/edit
Multipart Form Body
Type
Description

input_audio

File

The maximum length is 20 seconds. The following formats are supported: wav, mp3, m4a, wma

original_transcript

string

The transcript of the input audio file. This will need to be accurate or the output audio will not be correct

target_transcript

string

The target transcript of the output audio

voice_uuid

string

Voice UUID

HTTP Response

{
    "success": true,
    "item": {
        "uuid": <string>,
        "voice_uuid": <string>,
        "original_transcript": <string>,
        "target_transcript": <string>,
        "input_audio_url": <string>
    }
}

Last updated