More modelsBytedanceLipsync audio to video

Generate video with bytedance/lipsync/audio-to-video

Generates a video using the bytedance/lipsync/audio-to-video model.

POST
/api/v1/model/generateVideo
AuthorizationBearer <token>

API key is required to authorize requests. Obtain a key from your AtlasCloud dashboard.

In: header

modelstring

model name

audiostring

The URL pointing to the audio file that will be used for generating synchronized lip movements.

videostring

The URL of the video file for generating synchronized lip movements.

Response Body

curl -X POST "https://api.atlascloud.ai/api/v1/model/generateVideo" \  -H "Content-Type: application/json" \  -d '{    "model": "bytedance/lipsync/audio-to-video",    "audio": "https://static.atlascloud.ai/media/videos/MGZuENopzAwWcpFsZ7SwoZ7itP4gvqasswPeEJwbRHTxtkwF.wav",    "video": "https://static.atlascloud.ai/media/videos/MGZuEgzJZh6avv1LDEMppJZXLP9avGXqRuH7iAb7MBAz0Wu4.mp4"  }'
{
  "id": "string",
  "urls": {},
  "model": "string",
  "status": "string",
  "outputs": [
    "string"
  ],
  "created_at": "2019-08-24T14:15:22Z",
  "has_nsfw_contents": [
    true
  ]
}