feat: Odin talking head for Icelandic onboarding#224
Open
Conversation
Integrates pre-rendered talking head videos featuring Odin as a guide for Icelandic language learners during onboarding. Components: - TalkingHeadPlayer: Reusable video player with controls, autoplay, progress bar, and error handling - OdinTalkingHead: Pre-configured wrapper for Odin video clips Integration points: - OnboardingWelcome: New "odin-welcome" step with Norse-themed UI showing welcome video after Icelandic selection - AssessmentChat: Video panel above chat showing Odin for each AI response - CompletePage: Congratulations video with Icelandic transcript Documentation: - VIDEO_MANIFEST.md: Required clips, scripts, and specifications - sonic-odin-workflow.md: Guide for generating videos with ComfyUI + Sonic Videos are pre-rendered placeholders - actual clips to be generated using Sonic workflow documented in docs/sonic-odin-workflow.md 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Owner
Author
🎭 ComfyUI MCP Serverless - Ready for OdinThe ComfyUI MCP serverless deployment is live! Here's what you need for the talking head integration: Endpoint Info
API Calls1. Health Check: POST /runsync
{"input": {"action": "health"}}2. Portrait Generation: POST /runsync
{"input": {
"action": "portrait",
"description": "Odin, Norse god, one eye, long gray beard, wise ancient appearance, 2.5D semi-realistic style",
"width": 768, "height": 1024, "steps": 20
}}3. TTS (Voice Cloning): POST /runsync
{"input": {
"action": "tts",
"text": "Velkomin, traveler...",
"voice_reference": "<path_or_url_to_voice_sample>"
}}4. Lip-sync (async): POST /run
{"input": {
"action": "lipsync",
"portrait_image": "<base64_or_url>",
"audio": "<base64_or_url>"
}}
# Poll with GET /status/{job_id}Current State
To Generate Odin Videos# 1. Wake workers
gh workflow run gpu-control.yml -f action=wake -R Peleke/comfyui-mcp
# 2. Generate portrait, TTS, lip-sync via API
# 3. Download videos to interlinear/public/videos/odin/
# 4. Sleep workers (save $$$)
gh workflow run gpu-control.yml -f action=sleep -R Peleke/comfyui-mcpTypeScript ClientAvailable at const client = new RunPodServerlessClient({ endpointId, apiKey });
await client.portrait({ description: "Odin..." });
await client.tts({ text: "...", voice_reference: "..." });
await client.lipsync({ portrait_image: "...", audio: "..." });From comfyui-mcp PR #9 |
16 tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
TalkingHeadPlayercomponent with video controls, autoplay, and error handlingChanges
New Components
TalkingHeadPlayer.tsx- Reusable video player with progress bar, mute, replay controlsOdinTalkingHead- Pre-configured wrapper for Odin video clipsModified Files
OnboardingWelcome.tsx- New "odin-welcome" step with Norse-themed dark UIAssessmentChat.tsx- Video panel showing Odin for each AI response (Icelandic only)complete/page.tsx- Congratulations video with bilingual transcriptDocumentation
VIDEO_MANIFEST.md- Required video files, scripts, and specificationssonic-odin-workflow.md- Step-by-step guide for generating videosUser Flow (Icelandic)
Screenshots
N/A - Videos need to be generated using Sonic workflow
Test plan
Next Steps
public/videos/odin/🤖 Generated with Claude Code