Still-to-video conversion guide: model selection, motion prompting, and camera movement. Covers Wan 2.5 i2v, Seedance, Fabric, Grok Video with when to use ea...
数据来源:ClawHub。 在 ClawSkills 查看
选择你使用的 Agent
方法一:命令行安装(推荐)
推荐(无需提前安装 clawhub)
npx clawhub@latest --dir ~/.claude/skills install image-to-video或使用 clawhub CLI(需提前安装)
clawhub --dir ~/.claude/skills install image-to-video⚠️ 需要 Node.js 18+,没有 Node?请使用下方方法二直接下载 ZIP。 安装 Node.js →
方法二:手动下载安装(无需 Node)
下载 ZIP,解压后将文件夹放到以下路径,重启 Agent 即可:
安装路径
~/.claude/skills/image-to-video/💡解压后将文件夹放到上方路径,重启 Agent 即可生效
--- name: image-to-video description: "Still-to-video conversion guide: model selection, motion prompting, and camera movement. Covers Wan 2.5 i2v, Seedance, Fabric, Grok Video with when to use each. Use for: animating images, creating video from stills, adding motion, product animations. Triggers: image to video, i2v, animate image, still to video, add motion to image, image animation, photo to video, animate still, wan i2v, image2video, bring image to life, animate photo, motion from image" allowed-tools: Bash(infsh *) ---
Convert still images to animated videos via inference.sh CLI.
curl -fsSL https://cli.inference.sh | sh && infsh login
# Generate a still image
infsh app run falai/flux-dev-lora --input '{
"prompt": "serene mountain lake at sunset, snow-capped peaks reflected in still water, golden hour light, landscape photography",
"width": 1248,
"height": 832
}'
# Animate it
infsh app run falai/wan-2-5-i2v --input '{
"prompt": "gentle ripples on the lake surface, clouds slowly drifting, warm light shifting, birds flying in the distance",
"image": "path/to/lake-image.png"
}'
> Install note: The install script only detects your OS/architecture, downloads the matching binary from dist.inference.sh, and verifies its SHA-256 checksum. No elevated permissions or background processes. Manual install & verification available.
| Model | App ID | Best For | Motion Style | |-------|--------|----------|-------------| | Wan 2.5 i2v | falai/wan-2-5-i2v | Realistic motion, natural movement | Photorealistic, subtle | | Seedance 1.5 Pro | bytedance/seedance-1-5-pro | Stylized, creative, animation-like | Artistic, expressive | | Seedance 1.0 Pro | bytedance/seedance-1-0-pro | General purpose, good quality | Balanced | | Fabric 1.0 | falai/fabric-1-0 | Cloth, fabric, liquid, flowing materials | Physics-based flow | | Grok Imagine Video | xai/grok-imagine-video | General animation, text-guided | Versatile |
| Scenario | Best Model | Why | |----------|-----------|-----| | Landscape with water/clouds | Wan 2.5 i2v | Best at natural, realistic motion | | Portrait with subtle expression | Wan 2.5 i2v | Maintains face fidelity | | Product with fabric/cloth | Fabric 1.0 | Specialized in material physics | | Flag waving, curtain flowing | Fabric 1.0 | Cloth simulation | | Illustrated/artistic image | Seedance | Matches stylized content | | General "bring to life" | Seedance 1.5 Pro | Good all-rounder | | Quick test/iteration | Seedance 1.0 Lite | Fastest, 720p |
| Movement | Prompt Keyword | Effect | |----------|---------------|--------| | Push in / Dolly forward | "slow dolly forward", "camera pushes in" | Increasing intimacy/focus | | Pull out / Dolly back | "camera pulls back", "slow zoom out" | Reveal, context | | Pan left/right | "camera pans slowly to the right" | Scanning, following | | Tilt up/down | "camera tilts upward" | Revealing height | | Orbit | "camera orbits around the subject" | 3D exploration | | Crane up | "camera rises upward" | Grand reveal | | Static | (no camera movement prompt) | Subject motion only |
| Type | Prompt Examples | |------|----------------| | Natural elements | "water rippling", "clouds drifting", "leaves rustling in breeze" | | Hair/clothing | "hair blowing gently in wind", "dress fabric flowing" | | Atmospheric | "fog slowly rolling", "dust particles floating in light beams" | | Character | "person slowly turns to camera", "subtle breathing motion" | | Mechanical | "gears turning", "clock hands moving" | | Liquid | "coffee steam rising", "paint dripping", "water pouring" |
AI video models produce better results with gentle, subtle motion than dramatic action. Requesting too much movement causes distortion and artifacts.
❌ "person running and jumping over obstacles while the camera spins"
✅ "person slowly walking forward, gentle breeze, camera follows alongside"
❌ "explosion with debris flying everywhere"
✅ "candle flame flickering gently, warm ambient light shifting"
❌ "fast zoom into the eyes with dramatic camera shake"
✅ "slow dolly forward toward the subject, subtle focus shift"
[Camera movement] + [Subject motion] + [Atmospheric effects] + [Mood/pace]
# Landscape animation
infsh app run falai/wan-2-5-i2v --input '{
"prompt": "gentle camera pan right, water reflecting moving clouds, trees swaying slightly in breeze, warm golden light, peaceful and slow",
"image": "landscape.png"
}'
# Portrait animation
infsh app run falai/wan-2-5-i2v --input '{
"prompt": "subtle breathing motion, slight head turn, natural eye blink, hair moving gently, soft ambient lighting shifts",
"image": "portrait.png"
}'
# Product shot animation
infsh app run bytedance/seedance-1-5-pro --input '{
"prompt": "slow 360 degree orbit around the product, gentle spotlight movement, subtle reflections shifting, premium product showcase, smooth motion",
"image": "product.png"
}'
# Fabric/cloth animation
infsh app run falai/fabric-1-0 --input '{
"prompt": "fabric flowing and rippling in gentle wind, natural cloth physics, soft movement",
"image": "fabric-scene.png"
}'
# Architectural visualization
infsh app run falai/wan-2-5-i2v --input '{
"prompt": "slow dolly forward through the entrance, slight camera tilt upward, ambient light filtering through windows, dust particles in light beams",
"image": "building-interior.png"
}'
| Duration | Quality | Use For | |----------|---------|---------| | 2-3 seconds | Highest quality | GIFs, looping backgrounds, cinemagraphs | | 4-5 seconds | High quality | Social media posts, product reveals | | 6-8 seconds | Good quality | Short clips, transitions | | 10+ seconds | Quality degrades | Avoid unless stitching shorter clips |
For longer videos, generate multiple short clips and stitch:
# Generate 3 clips from the same image with progressive motion
infsh app run falai/wan-2-5-i2v --input '{
"prompt": "slow pan left, gentle water motion",
"image": "scene.png"
}' --no-wait
infsh app run falai/wan-2-5-i2v --input '{
"prompt": "continuing pan, clouds shifting, light changing",
"image": "scene.png"
}' --no-wait
# Stitch together
infsh app run infsh/media-merger --input '{
"media": ["clip1.mp4", "clip2.mp4"]
}'
# 1. Generate source image (best quality)
infsh app run bytedance/seedream-4-5 --input '{
"prompt": "cinematic landscape, misty mountains at dawn, lake in foreground, dramatic clouds, golden hour, 4K quality, professional photography",
"size": "2K"
}'
# 2. Animate the image
infsh app run falai/wan-2-5-i2v --input '{
"prompt": "gentle mist rolling through the valley, lake surface rippling, clouds slowly moving, birds in distance, warm light shifting",
"image": "landscape.png"
}'
# 3. Upscale video if needed
infsh app run falai/topaz-video-upscaler --input '{
"video": "animated-landscape.mp4"
}'
# 4. Add ambient audio
infsh app run infsh/hunyuanvideo-foley --input '{
"video": "animated-landscape.mp4",
"prompt": "gentle nature ambience, distant birds, soft wind, water lapping"
}'
# 5. Merge video with audio
infsh app run infsh/video-audio-merger --input '{
"video": "upscaled-landscape.mp4",
"audio": "ambient-audio.mp3"
}'
A cinemagraph is a still photo where only one element moves (e.g., waterfall moving in an otherwise frozen scene). To achieve this:
infsh app run falai/wan-2-5-i2v --input '{
"prompt": "only the waterfall is moving, everything else remains perfectly still, water cascading smoothly, rest of scene frozen",
"image": "waterfall-scene.png"
}'
| Mistake | Problem | Fix | |---------|---------|-----| | Too much motion requested | Distortion, artifacts, warping | Subtle > dramatic, always | | Wrong model for content type | Poor results | Use selection guide above | | Clips too long (10s+) | Quality degrades significantly | Keep to 3-5 seconds, stitch if needed | | No camera movement specified | Random/unpredictable motion | Always specify camera behavior | | Conflicting motion directions | Chaotic, unnatural | One primary motion direction | | Low-res source image | Low-res video output | Start with highest quality source | | Complex action scenes | Models can't handle | Keep motion simple and natural |
npx skills add inference-sh/skills@ai-video-generation
npx skills add inference-sh/skills@ai-image-generation
npx skills add inference-sh/skills@video-prompting-guide
npx skills add inference-sh/skills@prompt-engineering
Browse all apps: infsh app list
安装 Image To Video 后,可以对 AI 说这些话来触发它
Help me get started with Image To Video
Explains what Image To Video does, walks through the setup, and runs a quick demo based on your current project
Use Image To Video to still-to-video conversion guide: model selection, motion prompting,...
Invokes Image To Video with the right parameters and returns the result directly in the conversation
What can I do with Image To Video in my design & creative workflow?
Lists the top use cases for Image To Video, with example commands for each scenario
将技能文件夹放到 ~/.claude/skills/image-to-video/ 目录(个人级,所有项目可用),或 .claude/skills/image-to-video/(项目级)。重启 AI 客户端后,用 /image-to-video 主动调用,或让 AI 根据上下文自动发现并使用。
Image To Video 支持 Claude、Cursor、OpenClaw,可与这些 AI 平台无缝集成,扩展其能力。
Image To Video 可免费安装使用。请查阅仓库了解许可证信息。
Still-to-video conversion guide: model selection, motion prompting, and camera movement. Covers Wan 2.5 i2v, Seedance, Fabric, Grok Video with when to use ea...
Image To Video 属于「Design & Creative」分类,该分类的技能帮助 AI 智能体在此领域执行专业任务。
Automate my design & creative tasks using Image To Video
Identifies repetitive steps in your workflow and sets up Image To Video to handle them automatically