Veed Lipsync v2 via Fal.AI. Replaces a source video's mouth movements to articulate a new audio track โ takes any source video + a new audio track and produces a lip-synced output video.
Test this model instantly in the Console Playground โ no code required
Copy usage instructions for Claude, ChatGPT, or other AI
curl -X POST "https://api.core.today/v1/predictions" \
-H "Content-Type: application/json" \
-H "X-API-Key: cdt_your_api_key" \
-d '{
"model": "veed/lipsync/v2",
"input": {
"video_url": "https://v3.fal.media/files/monkey/q1fDPhrpfjfsaRmbhTed4_influencer.mp4",
"audio_url": "https://v3.fal.media/files/rabbit/Ql3ade3wEKlZXRQLRbhxm_tts.mp3"
}
}'| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
video_url | string | Yes | - | Source video to lipsync |
audio_url | string | Yes | - | New audio track to articulate |
There are 3 ways to provide files for the video_urlaudio_url parameters:
Attach files directly to POST /v1/predictions/upload. No separate upload step needed.
curl -X POST "https://api.core.today/v1/predictions/upload" \
-H "X-API-Key: cdt_your_api_key" \
-F "model=veed/lipsync/v2" \
-F 'input={"prompt":"your prompt here"}' \
-F "file:video_url=@your_file.png"Pass a publicly accessible URL directly. You can also use file_url from the Storage API.
{
"model": "veed/lipsync/v2",
"input": {
"prompt": "your prompt here",
"video_url": "https://example.com/image.jpg"
}
}Common parameters used when calling POST /v1/predictions.
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
model | string | Yes | - | Model identifier |
input | object | Yes | - | Object containing the model-specific parameters from the table above |
output_folder | string | No | - | Folder path for output files (max 256 chars, '..' not allowed) |
webhook_url | string | No | - | Webhook URL to call on completion |
is_public | boolean | No | false | If true, output files are also available via permanent public URLs |
Swap a talking-head video's audio for a translated voiceover and get realistic lip movement matching the new track.
curl -X POST "https://api.core.today/v1/predictions" \
-H "Content-Type: application/json" \
-H "X-API-Key: cdt_your_api_key" \
-d '{
"model": "veed/lipsync/v2",
"input": {
"video_url": "https://v3.fal.media/files/monkey/q1fDPhrpfjfsaRmbhTed4_influencer.mp4",
"audio_url": "https://v3.fal.media/files/rabbit/Ql3ade3wEKlZXRQLRbhxm_tts.mp3"
}
}'Re-record a corrected narration track and apply it to the existing footage instead of reshooting.
curl -X POST "https://api.core.today/v1/predictions" \
-H "Content-Type: application/json" \
-H "X-API-Key: cdt_your_api_key" \
-d '{
"model": "veed/lipsync/v2",
"input": {
"video_url": "https://example.com/product-demo-source.mp4",
"audio_url": "https://example.com/product-demo-narration-v2.mp3"
}
}'POST /v1/predictions