← スキル一覧に戻る

veo-image-to-video
by bluewaves-creations
Bluewaves Antropic Skills
⭐ 0🍴 0📅 2026年1月22日
SKILL.md
name: veo-image-to-video description: Animate a single image into a video using fal.ai Veo 3.1. Use when the user wants to create a video from a still image, animate a photo, or bring an image to life. Supports up to 8 seconds of video with optional audio. allowed-tools: Bash, Read, Write
Veo 3.1 Image-to-Video
Animate a single image into a dynamic video using Google DeepMind's Veo 3.1 model via fal.ai.
Prerequisites
FAL_KEYenvironment variable must be set (typically in~/.zshrc)- Input image should be 720p or higher resolution
API Endpoint
POST https://fal.run/fal-ai/veo3.1/image-to-video
Parameters
Required
prompt(string): Text description of the video motion/action to generateimage_url(string): URL of the input image to animate
Optional
| Parameter | Type | Default | Options |
|---|---|---|---|
duration | string | "8s" | "4s", "6s", "8s" |
aspect_ratio | string | "auto" | "auto", "9:16", "16:9" |
resolution | string | "720p" | "720p", "1080p" |
generate_audio | boolean | true | Uses 50% fewer credits if disabled |
Usage
cURL
curl --request POST \
--url https://fal.run/fal-ai/veo3.1/image-to-video \
--header "Authorization: Key $FAL_KEY" \
--header "Content-Type: application/json" \
--data '{
"prompt": "The camera slowly pans across the scene as leaves gently sway in the breeze",
"image_url": "https://example.com/landscape.jpg",
"duration": "8s",
"resolution": "1080p",
"generate_audio": true
}'
Python
import fal_client
result = fal_client.subscribe(
"fal-ai/veo3.1/image-to-video",
arguments={
"prompt": "The camera slowly pans across the scene as leaves gently sway in the breeze",
"image_url": "https://example.com/landscape.jpg",
"duration": "8s",
"resolution": "1080p",
"generate_audio": True
}
)
# Access the generated video URL
video_url = result["video"]["url"]
print(f"Generated video: {video_url}")
JavaScript
import { fal } from "@fal-ai/client";
const result = await fal.subscribe("fal-ai/veo3.1/image-to-video", {
input: {
prompt: "The camera slowly pans across the scene as leaves gently sway in the breeze",
image_url: "https://example.com/landscape.jpg",
duration: "8s",
resolution: "1080p",
generate_audio: true
}
});
console.log("Generated video:", result.video.url);
Response Format
{
"video": {
"url": "https://storage.googleapis.com/.../output.mp4"
}
}
Examples
-
Nature animation:
- Image: A forest scene
- Prompt: "Wind rustles through the trees, birds fly across the sky"
-
Portrait animation:
- Image: A portrait photo
- Prompt: "The person slowly turns their head and smiles"
-
Cinematic movement:
- Image: A cityscape
- Prompt: "Slow cinematic zoom out revealing the full city skyline at dusk"
-
Water animation:
- Image: Ocean or lake scene
- Prompt: "Gentle waves roll onto the shore, water sparkles in sunlight"
Tips
- Use descriptive motion language (pan, zoom, sway, flow)
- Describe camera movements for cinematic effects
- Higher resolution (1080p) provides better quality but takes longer
- Disable audio generation to save credits when not needed
- Ensure input image is at least 720p for best results
Error Handling
| Error | Cause | Solution |
|---|---|---|
401 Unauthorized | Invalid FAL_KEY | Verify key at fal.ai dashboard |
429 Too Many Requests | Rate limit exceeded | Wait 60 seconds, retry |
400 Bad Request | Invalid image URL or low resolution | Use 720p+ image |
500 Server Error | API temporary issue | Retry after 30 seconds |
Timeout | Video generation taking too long | Use 720p or shorter duration |
スコア
総合スコア
60/100
リポジトリの品質指標に基づく評価
✓SKILL.md
SKILL.mdファイルが含まれている
+20
✓LICENSE
ライセンスが設定されている
+10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
レビュー
💬
レビュー機能は近日公開予定です