Lip sync AI translate: how to dub an avatar video
Sume can't re-sync lips in existing footage. To dub an avatar video, translate the script, speak it with TTS 1.0, and lip sync the face with Fabric.
AI lip sync translation, or dubbing, replaces a video's speech with a translated voice and moves the mouth to match the new words. Sume does it by regenerating rather than by editing the original footage: its lip sync animates a still image or an avatar to new audio. So you translate the script, speak it in the target language with TTS 1.0, and lip sync the same face to that speech with VEED Fabric 1.0.
Facts come from Sume's Models overview, Timeline 1.0, and Video frames docs and the TTS and lip sync schemas in the Sume API reference, read on 2026-09-27; anything called current behavior is read from Sume's code. To swap the voice without new lip movement, see Translate a video's voiceover by API.
Can Sume re-sync the lips in a video I already have?
No. Both lip sync endpoints, VEED Fabric 1.0 and MiniMax H3 Max Lip Sync, take one still (image_url) or a ready avatar plus Sume-hosted audio; neither takes a video. Avatar 1.0 can't re-render its talking video in the new language either, because its clip prompt allows English speech only in current code. The dubbed version is a new clip of the same face.
How do I dub an avatar video, step by step?
- Get the lines. If Sume made the video, you already have its script. For a clip already on
media.sume.com, the voiceover guide shows how to transcribe it with timings. - Translate them, yourself or with an agent run. TTS speaks the
transcriptyou send. - Speak the translation with
POST /v1/tts-1.0/generate: a voice,languageset to the target code, andtimestamps.words: true, so that current code reports the audio'sduration_seconds. - Lip sync with
POST /v1/veed/fabric-1.0: the sameavatar_handle, the TTSaudio_url, and that duration. One job takes 1–300 seconds of audio in a file of at most 10 MB, more than the 60-second cap on an Avatar 1.0 video. - Past 300 seconds, lip sync the speech in parts and lay the clips over the full TTS track in one Timeline 1.0 render, as Lip sync AI for long videos shows.
curl -X POST https://api.sume.com/v1/veed/fabric-1.0 \
-H "Authorization: Bearer $SUME_API_KEY" \
-H "Content-Type: application/json" \
-H "Idempotency-Key: dub-es-lipsync-001" \
-d '{
"avatar_handle": "product_host",
"audio_url": "https://media.sume.com/artifacts/example/script-es.mp3",
"duration_seconds": 41.2,
"resolution": "720p"
}'Which face should the dubbed clip start from?
Fabric takes exactly one visual source:
avatar_handleoravatar_id: Sume resolves the avatar's identity still. Use it to dub a video you made with that avatar.image_url: any public HTTPS still, such as a frame of the original. For a clip onmedia.sume.com,POST /v1/video-framesreturns durable stills at the times you name, unbilled.
What changes compared with the original?
- The motion. Fabric animates one still to the new audio, so the original's gestures, camera moves, and product shots are not kept.
- The timing. A translation can run longer or shorter than the original line, so time any cuts to the new TTS timings.
- The voice. Use the avatar's own voice or a Voices library voice made for the target language; in current code, each avatar's own voice is cloned as English. What languages can an AI avatar speak? covers the language rules.
What does a dubbed version cost?
Each step bills on its own, plus a 5.5% agent fee by default. Fabric counts audio seconds rounded up, so lip syncing 60 seconds of translated speech at 720p comes to $11.25 before the fee.
| Step | Call | Price | Limit |
|---|---|---|---|
| Speak | POST /v1/tts-1.0/generate | $0.0475 per 1,000 characters | Up to 20,000 characters |
| Lip sync | POST /v1/veed/fabric-1.0 | $0.1875 per audio second (720p) | 1–300 s of Sume-hosted audio, at most 10 MB |
| Join (only past 300 s) | POST /v1/timeline-1.0/render | $0.10 per output minute | Output 1–1,800 s; 1–200 slots; Sume-hosted URLs |
Sources
Related posts
More in Sume Avatar 1.0
- Face swap a video with a photo: create an avatar first
Sume's Face Swap (Beta) takes a ready avatar, not a photo. Turn the photo into an avatar first, then swap it onto a 4–15 second public video.
- How to make a photo talk with AI: voice, then lip sync
Make a photo talk in two steps: turn your text into speech, then lip sync the photo to that audio. On Sume: TTS 1.0, then VEED Fabric 1.0.
- Real estate agent AI video: one avatar for every listing
Real estate agents can make AI videos without filming: create an avatar from a photo once, then script each video with a listing photo as the scene.
- Script for an AI avatar: how many words fit in 60 seconds
An AI avatar script is the words the avatar speaks. Sume's estimator today counts 2.8 words per second, so 60 seconds holds roughly 165 words.
Written by Sume