Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
bighardperson avatar

Video Generator SeeDance

  • 8 installs
  • 33 repo stars
  • Updated April 26, 2026
  • bighardperson/computer-science-skills-collection

video-generator-seedance is a Claude skill that generates text-to-video and image-to-video MP4 clips through Volcengine's SD1.5pro API.

About

This skill generates video with Volcengine's (火山引擎) SD1.5pro API, supporting text-to-video and image-to-video generation. It creates an asynchronous job, polls until the video is ready, and downloads the resulting MP4, with parameters for duration, output path, camera-fixed and watermark. A developer uses it to produce short generated videos from a prompt or a reference image. It matters because it wraps the async generation flow behind a single bundled Python script.

  • Generates video from text or from an image using Volcengine's SD1.5pro API
  • Runs asynchronous jobs that poll status and auto-download the finished MP4
  • Supports duration, output path, camera-fixed and watermark parameters

Video Generator SeeDance by the numbers

  • 8 all-time installs (skills.sh)
  • Ranked #1,074 of 1,337 Generative Media skills by installs in the Skillselion catalog
  • Data as of Jul 30, 2026 (Skillselion catalog sync)
At a glance

Video-Generator-SeeDance capabilities & compatibility

Requires a Volcengine API key and model ID; usage billed by Volcengine

Capabilities
video generation · text to video · image to video
Use cases
video generation
Runs
Runs locally
Pricing
Bring your own API key
From the docs

What Video-Generator-SeeDance says it does

使用火山引擎 SD1.5pro API 生成视频。支持文本到视频和图生视频,异步处理任务。
SKILL.md
**创建任务**: 调用API创建视频生成任务
SKILL.md
首次使用前必须配置 `config.json` 文件
SKILL.md
npx skills add https://github.com/bighardperson/computer-science-skills-collection --skill video-generator-seedance

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs8
repo stars33
Last updatedApril 26, 2026
Repositorybighardperson/computer-science-skills-collection

What it does

Generate text-to-video or image-to-video MP4 clips through Volcengine's SD1.5pro API.

Who is it for?

Generating short video clips from a text prompt or a reference image via the SD1.5pro API

Skip if: Editing or clipping existing videos; it only generates new video from prompts or images

When should I use this skill?

The user wants to generate a video from text or from an image using the SD1.5pro / Volcengine API

What you get

An MP4 video generated from a prompt or image and downloaded to the chosen path

  • Generated MP4 video file

By the numbers

  • default duration 5 seconds
  • 6 CLI parameters (prompt, image, duration, output, camera-fixed, watermark)

Files

SKILL.mdMarkdownGitHub ↗

SD1.5pro 视频生成技能

功能

使用火山引擎的 SD1.5pro API 生成视频,支持纯文本生成和图生视频。

首次使用配置

1. 创建配置文件

在技能目录中创建 config.json 文件:

{
  "api_key": "你的火山引擎API Key",
  "model": "你的模型ID(如:ep-20260313005600-p8s6m)"
}

2. 配置说明

  • api_key: 火山引擎API Key(必需)
  • model: 模型ID(必需),默认使用 ep-20260313005600-p8s6m

3. 获取API Key和模型ID

1. 访问火山引擎控制台:https://console.volcengine.com/ 2. 在API Key管理中创建或获取API Key 3. 在模型服务中找到SD1.5pro模型的ID

使用方法

基本用法(仅文本生成)

python scripts/generate_video.py "提示词"

图生视频(需要参考图片)

python scripts/generate_video.py "提示词" --image "https://example.com/image.jpg"

指定输出路径

python scripts/generate_video.py "提示词" --output "C:\Users\Desktop\视频.mp4"

完整参数

python scripts/generate_video.py "提示词" \
  --image "https://example.com/image.jpg" \
  --duration 5 \
  --output "C:\Users\Desktop\视频.mp4" \
  --camera-fixed False \
  --watermark True

参数说明

参数类型必需默认值说明
prompt字符串-文本提示词
--image字符串参考图片URL(图生视频)
--duration整数5视频时长(秒)
--output字符串桌面输出文件路径
--camera-fixed布尔False相机是否固定
--watermark布尔True是否添加水印

工作流程

1. 创建任务: 调用API创建视频生成任务 2. 异步处理: 轮询任务状态,等待生成完成 3. 下载视频: 自动下载生成的视频到指定位置

示例

示例1:纯文本生成

python scripts/generate_video.py "冬日的杭州西湖,雪花纷纷扬扬飘落"

示例2:图生视频

python scripts/generate_video.py "无人机穿越障碍" \
  --image "https://example.com/reference.jpg"

示例3:自定义参数

python scripts/generate_video.py "美丽风景" \
  --duration 10 \
  --output "C:\Videos\风景.mp4" \
  --watermark False

注意事项

  • 首次使用前必须配置 config.json 文件
  • 视频生成是异步的,可能需要几分钟
  • 建议使用桌面路径保存视频
  • 支持MP4格式输出
  • 默认视频时长为5秒,最大时长取决于模型限制

错误处理

如果遇到以下错误:

1. 配置文件不存在: 创建 config.json 文件并配置API Key和模型ID 2. API Key无效: 检查API Key是否正确 3. 模型ID错误: 确认模型ID是否有效 4. 网络错误: 检查网络连接和防火墙设置

API文档

  • 火山引擎控制台: https://console.volcengine.com/
  • API文档: https://www.volcengine.com/docs/

Related skills

FAQ

What does video-generator-seedance need to run?

A config.json with a Volcengine API key and a model ID; without it the script cannot start generation.

Does it support image-to-video?

Yes. Pass an image URL with --image to generate video from a reference image, in addition to plain text-to-video.

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.