AI Agent Hub
Back to skills
Volcano Engine Seedance Video Generation icon

Volcano Engine Seedance Video Generation

Design & Media Updated 2026.08.29

Paste the following prompt into your AI chat to install this skill:

Please install @user_ea6f9f3a/volcengine-seedance according to https://skillhub.cn/install/skillhub.md.

About this skill

Problem

When a user provides only a text prompt or a local image, but the video service expects a public image URL, an async task workflow, and result download, manual integration is error-prone: missing token replacement, passing local file paths directly, over-polling, or creating duplicate tasks can all cause failures and wasted billing. Common failures also include auth errors, inaccessible images, and task timeouts.

How It Works

This skill organizes Volcano Engine Seedance calls through an AI aggregation platform into practical steps:
- Text-to-video: call POST /v1/images/generations with prompt, size, and duration.
- Image-to-video: first upload JPG/PNG/WebP/GIF/BMP via POST /api/upload/image, then call POST /v1/chat/completions using a multimodal content array.
- Task polling: query GET /v1/aigc/task/{task_id} for PROCESSING, SUCCESS, or FAILED.
- Output: after success, provide the playback URL and local file path; failures rely on service-side automatic refunds.

Limits

It fits agent workflows for 4-15 second clips, not real-time editing, long-form post-production, or batch creative rewriting. Keep the user's original prompt unchanged; poll about every 8 seconds, stop after 10 minutes, and use the task ID for later lookup instead of recreating tasks.

Use Cases

  • When receiving a one-line sunset request, create a text-to-video task and poll every 8 seconds until a playback URL is returned.
  • When users send a wave image and ask it to move, upload the local image for a URL, then send an image-to-video multimodal request.
  • After generating a 4-15 second clip, query the task ID for SUCCESS, download the video locally, and return the file path.
  • When agent workflows must avoid duplicate tasks, stop polling after 10 minutes and tell users to check later by task ID.

Best For

  • OpenClaw workflow engineers who need to turn user images or text into Volcano Engine Seedance video tasks reliably.
  • Creative operators who need 4-15 second clips from a prompt or reference image and need a downloadable link.
  • Platform integration engineers who need to wrap upload, polling, status checks, and local video download endpoints.
  • Agent toolchain developers who need to avoid duplicate task creation and preserve users' original prompts.