Create an Audio Edit
This endpoint creates an Audio Edit.
note
Please ensure the audio file has a duration less than 20 seconds. Files over 20 seconds will be ignored.
HTTP Request
POST https://app.resemble.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,
"uuid": <string>
}
Example
NodeJS
1
Coming soon...