Seedance — AI Video Generation by ByteDance
Generate AI videos with synchronized audio using ByteDance's Seedance 1.5 Pro — featuring native audio-visual joint generation, cinematic camera control, multi-language lip-sync, and diverse sound effects.
Seedance excels at creating cinematic short clips with realistic motion, facial expressions, spatial audio, and complex camera movements.
Data usage note: This skill sends text prompts and image URLs to the Atlas Cloud API (api.atlascloud.ai) for video generation. No data is stored locally beyond the downloaded output files. API usage incurs charges based on the model selected.
Key Capabilities
- Text-to-Video — Generate video clips from text descriptions with synchronized audio
- Image-to-Video — Animate still images into dynamic video with motion and audio
- Native Audio Generation — Dialogue, sound effects, and music generated jointly with video (not post-processed)
- Multi-Language Lip-Sync — English, Chinese (including dialects), Japanese, Korean, Portuguese, Spanish, Indonesian
- Cinematic Camera Control — Dolly-in, snap zoom, first-person POV, tripod lock, crane shots
- Multiple Styles — Realistic, anime, 2D animation, steampunk, ink-wash, and more
- Resolution — Up to 720p (Pro), 480p available
- Duration — 5-12 seconds per clip
Setup
- Sign up at https://www.atlascloud.ai
- Console → API Keys → Create new key
- Set env:
export ATLASCLOUD_API_KEY="your-key"
Pricing
| Model |
Tier |
Price |
Resolution |
Best For |
bytedance/seedance-v1.5-pro/text-to-video |
Pro |
$0.222/video |
Up to 720p |
High-quality text-to-video |
bytedance/seedance-v1.5-pro/image-to-video |
Pro |
$0.222/video |
Up to 720p |
Animate images to video |
bytedance/seedance-v1.5-pro/text-to-video-fast |
Fast |
$0.018/video |
720p |
Quick drafts, prototyping |
bytedance/seedance-v1.5-pro/image-to-video-fast |
Fast |
$0.018/video |
720p |
Quick image animation |
Pro tier delivers higher quality with more detail and coherence. Fast tier is ~12x cheaper and suitable for drafts and iteration.
Available Models
Text-to-Video
| Model ID |
Speed |
Quality |
Audio |
bytedance/seedance-v1.5-pro/text-to-video |
Standard (~30-60s) |
High |
Yes |
bytedance/seedance-v1.5-pro/text-to-video-fast |
Fast (~10-20s) |
Good |
Yes |
Image-to-Video
| Model ID |
Speed |
Quality |
Audio |
bytedance/seedance-v1.5-pro/image-to-video |
Standard (~30-60s) |
High |
Yes |
bytedance/seedance-v1.5-pro/image-to-video-fast |
Fast (~10-20s) |
Good |
Yes |
Parameters
Text-to-Video
| Parameter |
Type |
Required |
Default |
Options |
prompt |
string |
Yes |
- |
Video description |
aspect_ratio |
string |
No |
16:9 |
21:9, 16:9, 4:3, 1:1, 3:4, 9:16 |
duration |
integer |
No |
5 |
5-12 seconds |
resolution |
string |
No |
720p |
720p, 480p (Pro); 720p (Fast) |
generate_audio |
boolean |
No |
true |
Generate synchronized audio |
camera_fixed |
boolean |
No |
false |
Lock camera position (tripod mode) |
seed |
integer |
No |
-1 (random) |
For reproducible results |
Image-to-Video
Same as text-to-video, plus:
| Parameter |
Type |
Required |
Description |
image |
string |
Yes |
URL of the source image to animate |
last_image |
string |
No |
URL of the target end frame (for guided motion) |
prompt |
string |
No |
Optional text describing desired motion/action |
Workflow: Submit → Poll → Download
Text-to-Video Example
# Step 1: Submit
curl -s -X POST "https://api.atlascloud.ai/api/v1/model/generateVideo" \
-H "Authorization: Bearer $ATLASCLOUD_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "bytedance/seedance-v1.5-pro/text-to-video",
"prompt": "A woman walks through a sunlit bamboo forest, camera slowly dollying forward. Birds chirping in the background, gentle wind rustling leaves.",
"aspect_ratio": "16:9",
"duration": 5,
"resolution": "720p",
"generate_audio": true
}'
# Returns: { "code": 200, "data": { "id": "prediction-id" } }
# Step 2: Poll (every 5 seconds until "completed" or "succeeded")
curl -s "https://api.atlascloud.ai/api/v1/model/result/{prediction-id}" \
-H "Authorization: Bearer $ATLASCLOUD_API_KEY"
# Returns: { "code": 200, "data": { "status": "completed", "outputs": ["https://...video-url..."] } }
# Step 3: Download
curl -o output.mp4 "VIDEO_URL_FROM_OUTPUTS"
Image-to-Video Example
curl -s -X POST "https://api.atlascloud.ai/api/v1/model/generateVideo" \
-H "Authorization: Bearer $ATLASCLOUD_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "bytedance/seedance-v1.5-pro/image-to-video",
"image": "https://example.com/portrait.jpg",
"prompt": "The person slowly turns their head and smiles, camera gently zooms in",
"aspect_ratio": "9:16",
"duration": 5,
"generate_audio": true
}'
Fast Model Example (Quick Draft)
curl -s -X POST "https://api.atlascloud.ai/api/v1/model/generateVideo" \
-H "Authorization: Bearer $ATLASCLOUD_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "bytedance/seedance-v1.5-pro/text-to-video-fast",
"prompt": "Ocean waves crashing on a rocky shore at sunset, seagulls flying overhead",
"aspect_ratio": "16:9",
"duration": 5,
"generate_audio": true
}'
Polling Logic
processing / starting / running → wait 5s, retry (Pro takes ~30-60s, Fast takes ~10-20s)
completed / succeeded → done, get URL from data.outputs[]
failed → error, read data.error
Atlas Cloud MCP Tools (if available)
If the Atlas Cloud MCP server is configured, use built-in tools:
atlas_quick_generate(model_keyword="seedance 1.5", type="Video", prompt="...")
atlas_generate_video(model="bytedance/seedance-v1.5-pro/text-to-video", params={...})
atlas_get_prediction(prediction_id="...")
Implementation Guide
Determine task type:
- Text-to-video: user describes a scene/action in text
- Image-to-video: user provides an image to animate
Choose model:
- Pro for final output, client-facing content, or quality-critical use
- Fast for quick iteration, drafts, or budget-conscious use
Extract parameters:
- Prompt: describe scene, action, camera movement, and audio cues
- Aspect ratio: infer from context (social reel→9:16, YouTube→16:9, square→1:1, cinematic→21:9)
- Duration: default 5s, up to 12s for longer scenes
- Audio: enabled by default; disable with
generate_audio: false if user only wants silent video
- Camera: set
camera_fixed: true for static/tripod shots
Execute: POST to generateVideo API → poll result → download MP4
Present result: show file path, offer to play
Prompt Tips
Seedance produces best results when prompts describe both visual and audio elements:
- Scene + Action: "A chef flips a pancake in a busy kitchen, sizzling sounds and clattering pans"
- Camera direction: "Camera slowly pans left to reveal...", "Close-up tracking shot of...", "First-person POV walking through..."
- Audio cues: Include sound descriptions — "birds chirping", "rain on window", "jazz music playing softly"
- Dialogue: For talking videos, include speech in quotes — "The narrator says: 'Welcome to our city'"
- Style: "cinematic", "anime style", "documentary", "slow motion", "timelapse"
- Lip-sync: For multi-language dialogue, specify the language — "A woman speaking Japanese says: 'こんにちは'"
Coming Soon: Seedance 2.0
Seedance 2.0 is ByteDance's next-generation unified multimodal video generation system, currently in preview. When available on Atlas Cloud, this skill will be upgraded with:
- Higher resolution — Expected support for 1080p and above
- Longer duration — Extended video length beyond 12 seconds
- Multimodal references — Video-to-video, audio-guided generation
- Director-level control — Fine-grained manipulation of performance, lighting, shadow, and camera
- Enhanced motion stability — Improved realism and coherence across longer clips
The API workflow and parameter structure are expected to remain compatible. Model IDs will be updated when Seedance 2.0 becomes available — no configuration changes needed on your end.
1---2name: seedance-33description: Generate AI videos using ByteDance's Seedance 1.5 Pro — a native audio-visual joint generation model with cinematic camera control, multi-language lip-sync, and synchronized audio generation. Supports text-to-video and image-to-video, up to 720p resolution, and 5-12 second duration. Available via Atlas Cloud API. Use this skill whenever the user wants to generate AI videos, create video clips, animate images, produce short films, make video content with audio, or mentions Seedance, ByteDance video, Jimeng, or Dreamina. Also trigger when users ask to create product demos, marketing videos, social media reels, animated scenes, cinematic clips, talking head videos, or any video content using AI.4---5
6# Seedance — AI Video Generation by ByteDance
7
8Generate AI videos with synchronized audio using ByteDance's Seedance 1.5 Pro — featuring native audio-visual joint generation, cinematic camera control, multi-language lip-sync, and diverse sound effects.
9
10Seedance excels at creating cinematic short clips with realistic motion, facial expressions, spatial audio, and complex camera movements.
11
12> **Data usage note**: This skill sends text prompts and image URLs to the Atlas Cloud API (`api.atlascloud.ai`) for video generation. No data is stored locally beyond the downloaded output files. API usage incurs charges based on the model selected.
13
14---
15
16## Key Capabilities
17
18- **Text-to-Video** — Generate video clips from text descriptions with synchronized audio
19- **Image-to-Video** — Animate still images into dynamic video with motion and audio
20- **Native Audio Generation** — Dialogue, sound effects, and music generated jointly with video (not post-processed)
21- **Multi-Language Lip-Sync** — English, Chinese (including dialects), Japanese, Korean, Portuguese, Spanish, Indonesian
22- **Cinematic Camera Control** — Dolly-in, snap zoom, first-person POV, tripod lock, crane shots
23- **Multiple Styles** — Realistic, anime, 2D animation, steampunk, ink-wash, and more
24- **Resolution** — Up to 720p (Pro), 480p available
25- **Duration** — 5-12 seconds per clip
26
27---
28
29## Setup
30
311. Sign up at https://www.atlascloud.ai
322. Console → API Keys → Create new key
333. Set env: `export ATLASCLOUD_API_KEY="your-key"`
34
35---
36
37## Pricing
38
39| Model | Tier | Price | Resolution | Best For |
40|-------|------|-------|------------|----------|
41| `bytedance/seedance-v1.5-pro/text-to-video` | Pro | $0.222/video | Up to 720p | High-quality text-to-video |
42| `bytedance/seedance-v1.5-pro/image-to-video` | Pro | $0.222/video | Up to 720p | Animate images to video |
43| `bytedance/seedance-v1.5-pro/text-to-video-fast` | Fast | $0.018/video | 720p | Quick drafts, prototyping |
44| `bytedance/seedance-v1.5-pro/image-to-video-fast` | Fast | $0.018/video | 720p | Quick image animation |
45
46**Pro** tier delivers higher quality with more detail and coherence. **Fast** tier is ~12x cheaper and suitable for drafts and iteration.
47
48---
49
50## Available Models
51
52### Text-to-Video
53
54| Model ID | Speed | Quality | Audio |
55|----------|-------|---------|-------|
56| `bytedance/seedance-v1.5-pro/text-to-video` | Standard (~30-60s) | High | Yes |
57| `bytedance/seedance-v1.5-pro/text-to-video-fast` | Fast (~10-20s) | Good | Yes |
58
59### Image-to-Video
60
61| Model ID | Speed | Quality | Audio |
62|----------|-------|---------|-------|
63| `bytedance/seedance-v1.5-pro/image-to-video` | Standard (~30-60s) | High | Yes |
64| `bytedance/seedance-v1.5-pro/image-to-video-fast` | Fast (~10-20s) | Good | Yes |
65
66---
67
68## Parameters
69
70### Text-to-Video
71
72| Parameter | Type | Required | Default | Options |
73|-----------|------|----------|---------|---------|
74| `prompt` | string | Yes | - | Video description |
75| `aspect_ratio` | string | No | 16:9 | 21:9, 16:9, 4:3, 1:1, 3:4, 9:16 |
76| `duration` | integer | No | 5 | 5-12 seconds |
77| `resolution` | string | No | 720p | 720p, 480p (Pro); 720p (Fast) |
78| `generate_audio` | boolean | No | true | Generate synchronized audio |
79| `camera_fixed` | boolean | No | false | Lock camera position (tripod mode) |
80| `seed` | integer | No | -1 (random) | For reproducible results |
81
82### Image-to-Video
83
84Same as text-to-video, plus:
85
86| Parameter | Type | Required | Description |
87|-----------|------|----------|-------------|
88| `image` | string | Yes | URL of the source image to animate |
89| `last_image` | string | No | URL of the target end frame (for guided motion) |
90| `prompt` | string | No | Optional text describing desired motion/action |
91
92---
93
94## Workflow: Submit → Poll → Download
95
96### Text-to-Video Example
97
98```bash
99# Step 1: Submit
100curl -s -X POST "https://api.atlascloud.ai/api/v1/model/generateVideo" \
101 -H "Authorization: Bearer $ATLASCLOUD_API_KEY" \
102 -H "Content-Type: application/json" \
103 -d '{
104 "model": "bytedance/seedance-v1.5-pro/text-to-video",
105 "prompt": "A woman walks through a sunlit bamboo forest, camera slowly dollying forward. Birds chirping in the background, gentle wind rustling leaves.",
106 "aspect_ratio": "16:9",
107 "duration": 5,
108 "resolution": "720p",
109 "generate_audio": true
110 }'
111# Returns: { "code": 200, "data": { "id": "prediction-id" } }
112
113# Step 2: Poll (every 5 seconds until "completed" or "succeeded")
114curl -s "https://api.atlascloud.ai/api/v1/model/result/{prediction-id}" \
115 -H "Authorization: Bearer $ATLASCLOUD_API_KEY"
116# Returns: { "code": 200, "data": { "status": "completed", "outputs": ["https://...video-url..."] } }
117
118# Step 3: Download
119curl -o output.mp4 "VIDEO_URL_FROM_OUTPUTS"
120```
121
122### Image-to-Video Example
123
124```bash
125curl -s -X POST "https://api.atlascloud.ai/api/v1/model/generateVideo" \
126 -H "Authorization: Bearer $ATLASCLOUD_API_KEY" \
127 -H "Content-Type: application/json" \
128 -d '{
129 "model": "bytedance/seedance-v1.5-pro/image-to-video",
130 "image": "https://example.com/portrait.jpg",
131 "prompt": "The person slowly turns their head and smiles, camera gently zooms in",
132 "aspect_ratio": "9:16",
133 "duration": 5,
134 "generate_audio": true
135 }'
136```
137
138### Fast Model Example (Quick Draft)
139
140```bash
141curl -s -X POST "https://api.atlascloud.ai/api/v1/model/generateVideo" \
142 -H "Authorization: Bearer $ATLASCLOUD_API_KEY" \
143 -H "Content-Type: application/json" \
144 -d '{
145 "model": "bytedance/seedance-v1.5-pro/text-to-video-fast",
146 "prompt": "Ocean waves crashing on a rocky shore at sunset, seagulls flying overhead",
147 "aspect_ratio": "16:9",
148 "duration": 5,
149 "generate_audio": true
150 }'
151```
152
153### Polling Logic
154
155- `processing` / `starting` / `running` → wait 5s, retry (Pro takes ~30-60s, Fast takes ~10-20s)
156- `completed` / `succeeded` → done, get URL from `data.outputs[]`
157- `failed` → error, read `data.error`
158
159### Atlas Cloud MCP Tools (if available)
160
161If the Atlas Cloud MCP server is configured, use built-in tools:
162
163```
164atlas_quick_generate(model_keyword="seedance 1.5", type="Video", prompt="...")
165atlas_generate_video(model="bytedance/seedance-v1.5-pro/text-to-video", params={...})
166atlas_get_prediction(prediction_id="...")
167```
168
169---
170
171## Implementation Guide
172
1731. **Determine task type**:
174 - Text-to-video: user describes a scene/action in text
175 - Image-to-video: user provides an image to animate
176
1772. **Choose model**:
178 - **Pro** for final output, client-facing content, or quality-critical use
179 - **Fast** for quick iteration, drafts, or budget-conscious use
180
1813. **Extract parameters**:
182 - Prompt: describe scene, action, camera movement, and audio cues
183 - Aspect ratio: infer from context (social reel→9:16, YouTube→16:9, square→1:1, cinematic→21:9)
184 - Duration: default 5s, up to 12s for longer scenes
185 - Audio: enabled by default; disable with `generate_audio: false` if user only wants silent video
186 - Camera: set `camera_fixed: true` for static/tripod shots
187
1884. **Execute**: POST to generateVideo API → poll result → download MP4
189
1905. **Present result**: show file path, offer to play
191
192## Prompt Tips
193
194Seedance produces best results when prompts describe both visual and audio elements:
195
196- **Scene + Action**: "A chef flips a pancake in a busy kitchen, sizzling sounds and clattering pans"
197- **Camera direction**: "Camera slowly pans left to reveal...", "Close-up tracking shot of...", "First-person POV walking through..."
198- **Audio cues**: Include sound descriptions — "birds chirping", "rain on window", "jazz music playing softly"
199- **Dialogue**: For talking videos, include speech in quotes — "The narrator says: 'Welcome to our city'"
200- **Style**: "cinematic", "anime style", "documentary", "slow motion", "timelapse"
201- **Lip-sync**: For multi-language dialogue, specify the language — "A woman speaking Japanese says: 'こんにちは'"
202
203---
204
205## Coming Soon: Seedance 2.0
206
207Seedance 2.0 is ByteDance's next-generation unified multimodal video generation system, currently in preview. When available on Atlas Cloud, this skill will be upgraded with:
208
209- **Higher resolution** — Expected support for 1080p and above
210- **Longer duration** — Extended video length beyond 12 seconds
211- **Multimodal references** — Video-to-video, audio-guided generation
212- **Director-level control** — Fine-grained manipulation of performance, lighting, shadow, and camera
213- **Enhanced motion stability** — Improved realism and coherence across longer clips
214
215The API workflow and parameter structure are expected to remain compatible. Model IDs will be updated when Seedance 2.0 becomes available — no configuration changes needed on your end.