fal-lip-sync/SKILL.md
Create talking head videos, lip sync audio to video, and animate portraits with expressions. Use when the user requests "Talking head", "Lip sync", "Make this person talk", "Animate portrait", "Live portrait", "Avatar video".
npx skillsauth add abanoub-ashraf/manus-skills-import fal-lip-syncInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Create talking head videos, sync lips to audio, and animate portraits using fal.ai models.
| Script | Purpose |
|--------|---------|
| talking-head.sh | Generate a talking head video from an image + audio/text |
| lip-sync.sh | Sync lips in an existing video to new audio |
./scripts/talking-head.sh --image-url "https://example.com/portrait.jpg" --audio-url "https://example.com/speech.mp3" --model veed/fabric-1.0
./scripts/talking-head.sh --image-url "https://example.com/portrait.jpg" --text "Hello, welcome to our presentation" --model fal-ai/creatify/aurora
./scripts/lip-sync.sh --video-url "https://example.com/video.mp4" --audio-url "https://example.com/new-speech.mp3"
| Argument | Description | Required |
|----------|-------------|----------|
| --image-url | URL of portrait/face image | Yes |
| --audio-url | URL of audio to sync | Yes (or --text) |
| --text | Text to speak (auto TTS) | Yes (or --audio-url) |
| --model / -m | Model endpoint | No (default: veed/fabric-1.0) |
| --tts-model | TTS model for --text mode | No (default: fal-ai/minimax/speech-2.6-turbo) |
| --wait / -w | Wait for completion | No (default: true) |
| --async / -a | Return request ID immediately | No |
| Argument | Description | Required |
|----------|-------------|----------|
| --video-url | URL of video to lip sync | Yes |
| --audio-url | URL of audio to sync to | Yes |
| --model / -m | Model endpoint | No (default: fal-ai/sync-lipsync/v2) |
To discover the best and latest lip sync and talking head models, use the search API:
# Search for talking head models
bash /mnt/skills/user/fal-generate/scripts/search-models.sh --query "talking head"
# Search for lip sync models
bash /mnt/skills/user/fal-generate/scripts/search-models.sh --query "lip sync"
# Search for live portrait / expression transfer
bash /mnt/skills/user/fal-generate/scripts/search-models.sh --query "live portrait"
Or use the search_models MCP tool with relevant keywords like "lip sync", "talking head", "avatar".
{
"video": {
"url": "https://fal.media/files/...",
"content_type": "video/mp4"
}
}
Present the video URL directly to the user.
development
Design principles for building polished, native-feeling SwiftUI apps and widgets. Use this skill when creating or modifying SwiftUI views, iOS widgets (WidgetKit), or any native Apple UI. Ensures proper spacing, typography, colors, and widget implementations that look and feel like quality apps rather than AI-generated slop.
data-ai
Design and implement SwiftUI views, components, and app architecture. Use when creating new SwiftUI views, implementing MVVM/TCA patterns, managing state with @Observable, @State, @Binding, or @Environment, designing navigation flows, or structuring iOS app architecture. Triggers on SwiftUI, view model, state management, navigation, coordinator pattern.
development
Implement, review, or improve SwiftUI animations and transitions. Use when adding implicit or explicit animations with withAnimation, configuring spring animations (.smooth, .snappy, .bouncy), building phase or keyframe animations with PhaseAnimator/KeyframeAnimator, creating hero transitions with matchedGeometryEffect or matchedTransitionSource, adding SF Symbol effects (bounce, pulse, variableColor, breathe, rotate, wiggle), implementing custom Transition or CustomAnimation types, or ensuring animations respect accessibilityReduceMotion.
testing
Audit SwiftUI views for accessibility (iOS + macOS) with patch-ready fixes