Skip to main content
POST
/
api
/
v3
/
bytedance
/
realman_change_lips
/
audio-to-video
Audio to Video
curl --request POST \
  --url https://gptproto.com/api/v3/bytedance/realman_change_lips/audio-to-video \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: application/json' \
  --data '{
  "url": "<string>",
  "pure_audio_url": "<string>"
}'
{
  "error": {
    "message": "Invalid signature",
    "type": "401"
  }
}

Overview

This endpoint provides audio to video functionality for lip-sync generation.

Authentication

This endpoint requires authentication using a Bearer token.
Authorization
string
default:"sk-***********"
required
Your API key in the format: YOUR_API_KEY

Request Body

url
string
required
The video URL to apply lip-sync to.
pure_audio_url
string
required
The audio URL to sync with the video.

Request Example

curl --location 'https://gptproto.com/api/v3/bytedance/realman_change_lips/audio-to-video' \
  --header 'Authorization: YOUR_API_KEY' \
  --header 'Content-Type: application/json' \
  --data '{
    "url": "https://d1q70pf5vjeyhc.cloudfront.net/predictions/80ab53675b544f058826918526090b78/1.mp4",
    "pure_audio_url": "https://heyoo.oss-ap-southeast-1.aliyuncs.com/ai/api45003a21-b355-4214-877d-a83d2fd92858.mp3"
}'

Response

Success
200
Successful response
{
  "status": "success"
}

Error Responses

{
  "error": {
    "message": "Invalid signature",
    "type": "401"
  }
}