fal-video-edit/SKILL.md
Edit existing videos using AI — remix style, edit content, upscale resolution, remove background, or add audio/sound effects. Use when the user requests "Edit video", "Remix video", "Upscale video", "Remove video background", "Add sound to video", "Video to audio".
npx skillsauth add abanoub-ashraf/manus-skills-import fal-video-editInstall 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.
Edit, remix, upscale, and enhance existing videos using fal.ai models.
| Script | Purpose |
|--------|---------|
| edit-video.sh | Edit or remix a video with AI |
| video-audio.sh | Add synchronized audio/sound effects to a video |
./scripts/edit-video.sh --video-url "https://example.com/video.mp4" --prompt "Transform into anime style" --operation remix
./scripts/edit-video.sh --video-url "https://example.com/video.mp4" --prompt "Remove the person in the background" --operation edit
./scripts/edit-video.sh --video-url "https://example.com/video.mp4" --operation upscale
./scripts/edit-video.sh --video-url "https://example.com/video.mp4" --operation remove-bg
./scripts/video-audio.sh --video-url "https://example.com/silent-video.mp4" --prompt "City street ambiance with car horns and people talking"
| Argument | Description | Required |
|----------|-------------|----------|
| --video-url | URL of video to edit | Yes |
| --prompt / -p | Edit instructions or style description | For remix/edit |
| --operation | remix, edit, upscale, remove-bg | Yes |
| --model / -m | Override model endpoint | No |
| Argument | Description | Required |
|----------|-------------|----------|
| --video-url | URL of video to add audio to | Yes |
| --prompt / -p | Description of desired audio/sounds | No |
| --model / -m | Model endpoint | No (default: fal-ai/mmaudio-v2) |
To discover the best and latest video editing models, use the search API:
# Search for video editing models
bash /mnt/skills/user/fal-generate/scripts/search-models.sh --query "video editing"
bash /mnt/skills/user/fal-generate/scripts/search-models.sh --query "video-to-video"
# Search for video upscaling
bash /mnt/skills/user/fal-generate/scripts/search-models.sh --query "upscale video"
# Search for video background removal
bash /mnt/skills/user/fal-generate/scripts/search-models.sh --query "video background removal"
# Search for video audio generation
bash /mnt/skills/user/fal-generate/scripts/search-models.sh --query "video to audio"
Or use the search_models MCP tool with keywords like "video edit", "video remix", "video upscale", "video audio".
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