Lipsync20Input
Fields
audio_urlurlrequiredURL of the new audio track to lip-sync the video to.
Must be an http(s) URL.
video_urlurlrequiredURL of the source video to dub.
Must be an http(s) URL.
JSON Schema
Lipsync20Input.json
{
"additionalProperties": false,
"properties": {
"$schema": {
"description": "A URL to the JSON Schema for this object.",
"examples": [
"https://api.veed.io/schemas/Lipsync20Input.json"
],
"format": "uri",
"readOnly": true,
"type": "string"
},
"audio_url": {
"description": "URL of the new audio track to lip-sync the video to.",
"examples": [
"https://media.veed.io/in.mp3"
],
"format": "uri",
"maxLength": 8192,
"minLength": 1,
"pattern": "^[Hh][Tt][Tt][Pp][Ss]?://",
"patternDescription": "an http(s) URL",
"type": "string"
},
"video_url": {
"description": "URL of the source video to dub.",
"examples": [
"https://media.veed.io/in.mp4"
],
"format": "uri",
"maxLength": 8192,
"minLength": 1,
"pattern": "^[Hh][Tt][Tt][Pp][Ss]?://",
"patternDescription": "an http(s) URL",
"type": "string"
}
},
"required": [
"video_url",
"audio_url"
],
"type": "object"
}