AI avatar language tutor: slow, captioned lesson videos
Make AI avatar language tutor videos: speak each lesson line slowly with TTS 1.0, lip sync a tutor avatar with Fabric, then caption each clip.
An AI avatar language tutor is either a live conversation partner or a recorded presenter; the recorded kind is a talking avatar that says each lesson line in the target language, slowly, with the words on screen. With Sume you build the recorded kind: TTS 1.0 speaks each line in the target language at a slower speed, VEED Fabric 1.0 lip syncs a tutor avatar to it, and captions or word timings put the text on screen. Every clip is a job that renders first and plays back later.
Facts come from Sume's Models overview and Video captions docs and the TTS and Fabric schemas in the Sume API reference, read on 2026-09-27; anything called current behavior is read from Sume's code. For audio-only drills without a face, see Text to speech for language learning.
Can the tutor speak the language I teach?
For English, yes; for other languages, through TTS after a quick test. The one-call Avatar 1.0 talking video speaks English only in current code and has no speed setting, so it only suits English lessons at the pace generation picks; any other language, or slower English, takes TTS 1.0 plus Fabric. The TTS schema gives ko, ja, and en as example codes and publishes no full list, so synthesize one short line in your language and listen before you record a course.
Set language on every non-English transcript; left out, it defaults to English. In current code, language: "ko" needs at least one Hangul syllable in the transcript, or the request fails with 400 tts_language_script_mismatch.
How do I make the tutor speak slowly?
Set generation_config.speed, a multiplier from 0.6 to 1.5, on the TTS request. For the voice, send the tutor avatar's avatar_handle, whose own voice is cloned as English in current code, or a voice made for that language in Assets → Voices, sent as voice.id.
Add timestamps.words and sentence segmentation: with WAV output, each sentence comes back as its own audio_url, ready to become its own clip, and every word gets a start and end time. Text to speech for language learning covers that request in detail.
curl -X POST https://api.sume.com/v1/tts-1.0/generate \
-H "Authorization: Bearer $SUME_API_KEY" \
-H "Content-Type: application/json" \
-H "Idempotency-Key: lesson-3-lines-001" \
-d '{
"transcript": "¿Dónde está la estación? Está a la derecha.",
"voice": { "id": "voi_…" },
"language": "es",
"generation_config": { "speed": 0.75 },
"output_format": { "container": "wav", "encoding": "pcm_s16le", "sample_rate": 44100 },
"timestamps": { "words": true },
"segmentation": { "mode": "sentence" }
}'How do I put the tutor on camera?
Send each audio file to POST /v1/veed/fabric-1.0 with the tutor avatar's avatar_handle and the audio's duration_seconds. Sume resolves the handle to the avatar's identity still, so every lesson starts from the same face. One job takes 1–300 seconds of Sume-hosted audio, at most 10 MB.
How do I show the words on screen?
- Burn captions onto each finished clip with
POST /v1/video-captions. Pass the lesson text asscript_textso the burned words follow your spelling; the timing still comes from speech-to-text. - Caption clip by clip: in current code, the caption job refuses a source over 60 seconds or one without an audio stream.
- The documented caption styles draw in Latin or Hangul faces. For Korean, pick a Hangul style such as
black-outline; the Latin stylesslam,punch, andtiktok-greenrefuse Korean copy with a400(Korean captions). - To highlight each word in your own player instead, use the TTS
wordstimings, as in text to speech with highlighted words.
What does a lesson clip cost?
Each step bills on its own, plus a 5.5% agent fee by default. Fabric counts audio seconds rounded up, so a 20-second lesson clip at 720p comes to $3.75 before the fee.
| Step | Call | Price | Limit |
|---|---|---|---|
| Slow speech | POST /v1/tts-1.0/generate | $0.0475 per 1,000 characters | Up to 20,000 characters; speed 0.6–1.5 |
| Tutor on camera | POST /v1/veed/fabric-1.0 | $0.1875 per audio second (720p) | 1–300 s of Sume-hosted audio, at most 10 MB |
| Captions | POST /v1/video-captions | A fixed amount per job; confirm it in GET /v1/catalog | Source up to 60 s with an audio stream, in current code |
Sources
Related posts
More in Use cases
- AI book cover generator: a 1600×2560 Kindle ebook cover
Amazon KDP recommends ebook covers 2,560 pixels tall by 1,600 wide. ChatGPT Image 2.5 on Sume takes 1600 × 2560 exactly; add the title and author.
- AI book trailer maker: turn a blurb and cover into video
An AI book trailer turns your blurb and cover into a short video: narration, mood shots that end on the cover, music, and the title on screen.
- AI coloring page generator: from a prompt or a photo
Ask for black outlines on white with no shading, in a portrait size for your paper. Send a photo as a reference to turn it into a coloring page.
- AI fashion video generator API: editorial films, lookbooks
Make AI fashion editorial videos with the Sume API: run sume-fashion-editorial per look, queue a lookbook in bulk, or animate a cover still yourself.
Written by Sume