Avatar generation creates a persistent digital human or character that can speak, gesture, and appear on demand. It composes earlier 16.1 capabilities: image gen or capture for the look, TTS / cloning for voice, lip sync for mouth motion, sometimes video gen for full-body motion. This lecture is the system capability; vendors may show up again under 16.3/16.4, but 16.1 teaches how the pieces fit.
Learning Objectives
By the end of this lesson, students should be able to:
- Define an AI avatar as a reusable multimodal presenter, not one clip.
- Split look / voice / motion / runtime into separate subsystems.
- Choose photo-real vs stylized vs 3D-rigged avatars for a use case.
- Assemble a script→avatar render pipeline in Python-shaped steps.
- List real-time vs offline avatar constraints (next lecture).
- Apply consent and disclosure rules to synthetic presenters.
An AI avatar is a persistent visual+vocal identity that can be driven by text (or live audio) to produce talking video or a real-time render. Generation means creating or rigging that identity; driving it later is inference (TTS + animation), not a new person each time.
Subsystem Map
| Layer | Capability | 16.1 / catalog link |
|---|---|---|
| Look | Face/body appearance | Image gen / capture; 16.3 styles |
| Voice | Stock TTS or clone | TTS, cloning, 16.2 |
| Face motion | Lip sync + expression | Lip sync |
| Body / scene | Gestures, b-roll | Video gen / 16.4 |
| Runtime | Offline render vs live | Real-time AI |
Avatar Types
Photo-real double
- Built from a real person
- Highest consent bar
- Support, training, news desk
Stylized / brand mascot
- Illustration or 3D toon
- IP/brand, not likeness
- Kids’ content, marketing
Full-body 3D
- Game-style rig + blendshapes
- Real-time engines possible
- Weaker “film” realism
Practical: Script to Avatar Job
When Avatars Win vs Fail
Strong fit
- Many variants of the same presenter
- Localization at scale
- Always-on help / training bots (with disclosure)
Poor fit
- One-off cinematic B-roll (use 16.4 gen)
- Undisclosed impersonation
- Live high-stakes advice without HITL
“Avatar generation = image generation of a face.” A still portrait is only the look layer. Without a voice, a lip-sync/motion driver, and a reusable ID, you have a picture—not an avatar. Conversely, driving a purchased avatar with new scripts is inference, not “generating a new human” each time.
Knowledge Check
- Short Answer: Name the four layers of a typical avatar stack. Answer: Look, voice, face/body motion, runtime (offline vs real-time).
- True/False: Creating an avatar still and driving it later are the same operation. Answer: False—create/rig once, then infer many scripts.
- Multiple Choice: Photo-real doubles require: (a) extra consent/likeness control, (b) only OCR, (c) k-means. Answer: (a).
- Short Answer: Which lecture covers streaming latency for live avatars? Answer: Real-time AI.
- True/False: TTS/cloning vendors for avatar voice are catalogued in 16.2. Answer: True.
- Multiple Choice: A brand mascot is usually: (a) stylized IP, (b) an unconsented celebrity clone, (c) STT. Answer: (a).
- Short Answer: Why not use Sora for every avatar line? Answer: No persistent identity/control; expensive; not a reusable presenter rig.
- True/False: Disclosure that the presenter is synthetic is optional if quality is high. Answer: False in responsible/policy-compliant deployments.
- Multiple Choice: Lip sync in the avatar stack handles: (a) mouth–audio alignment, (b) CLIP retrieval, (c) PDF parsing. Answer: (a).
- Short Answer: Next lecture? Answer: Real-time AI.
Key Takeaways
- Avatars are persistent multimodal presenters: look + voice + motion + runtime.
- Compose 16.1 capabilities; do not treat “avatar” as one magic model.
- Photo-real likenesses need consent; stylized mascots are IP.
- Offline render vs live stream is a first-class design choice.
- Next: Real-time AI.
Architecture lab: Students draw their avatar stack and label each box with a 16.1 lecture + optional 16.2/16.3/16.4 product.
Policy: Write a user-facing disclosure sentence for a bank’s avatar teller vs an entertainment mascot.
Recap: Avatars compose look, voice, and motion into a reusable identity. Continue with Real-time AI.