seedance
Seedance harnesses Volcengine's video synthesis models to create dynamic videos from text descriptions, reference images, or audio input. The skill supports multiple generation modes including text-to-video, image-to-video with first-frame or first-and-last-frame guidance, multi-image reference blending, and audio-synchronized video creation on select models. Configure your API key via environment variables and use command-line parameters to control duration, aspect ratio, model selection, and polling behavior.
Seedance generates AI videos from text prompts, images, or audio using Volcengine's video synthesis models.
AI-generated summary based on this skill's SKILL.md
Install
netease-youdao/LobsterAI/seedance · repository language: TypeScript
git clone https://github.com/netease-youdao/LobsterAI
cp -r LobsterAI/SKILLs/seedance ~/.claude/skills/seedanceFrequently asked questions
AI-generated answers based on this skill's SKILL.md and metadata
What can Seedance do with AI video generation?
Seedance harnesses Volcengine's video synthesis models to generate videos from text descriptions, reference images, or audio input. The skill supports text-to-video creation, image-to-video conversion with frame guidance, multi-image blending, and audio-synchronized video generation on select models. You control duration, aspect ratio, and model selection via command-line parameters.
How do I generate videos with AI using Seedance?
Seedance enables video generation through multiple modes: provide a text prompt for text-to-video synthesis, supply reference images for image-to-video conversion, or use audio input for synchronized video creation. Configure your Volcengine API key via environment variables, then use command-line parameters to specify duration, aspect ratio, and your preferred model before initiating generation.
Does Seedance support image-to-video conversion?
Yes, Seedance converts static images into animated videos through its image-to-video mode. You can provide a first frame only or both first-and-last-frame guidance to direct the animation. Seedance also supports multi-image reference blending to influence the generated video's visual style and content based on multiple reference images.
Can Seedance create videos with audio synchronization?
Seedance supports audio-synchronized video generation on select Volcengine models. This capability enables you to create dynamic video content that aligns with audio input, making it ideal for producing short-form social media videos and other audio-driven content efficiently.
What is the Volcengine Seedance API and how do I access it?
Seedance provides access to Volcengine's Seedance API, a video synthesis service. Configure access by setting your Volcengine API key as an environment variable. Once configured, Seedance handles polling and model management, allowing you to focus on crafting your video generation requests through text prompts, images, or audio inputs.
Is Seedance free to use?
Seedance is released under the MIT license. Access to Volcengine's underlying video synthesis models requires a Volcengine account and API key; pricing and free tier availability depend on Volcengine's current service terms, which you should verify directly with Volcengine.
SKILL.md
rendered from the published skill — quoted content, verbatim
Seedance 视频生成
使用火山引擎 Seedance 模型生成高质量 AI 视频,支持文本生成视频(T2V)、图片生成视频(I2V)、音画同步等多种创作模式。
> ✨ Node.js 版本:此脚本使用 Node.js 实现,无需 Python 环境。通过入口脚本自动检测 Node.js 运行时(优先使用系统 node,回退到 LobsterAI 内置运行时),Windows 和 Mac 用户都可以开箱即用。
配置
- Base URL:
https://ark.cn-beijing.volces.com/api/v3 - API Key: 从环境变量
ARK_API_KEY读取 - 认证方式:
Authorization: Bearer {API_KEY} - SDK: 兼容火山方舟 Python SDK
如何配置 API Key
方式一:通过环境变量配置(推荐)
在终端中设置环境变量:
# macOS/Linux
export ARK_API_KEY="你的API密钥"
# 或者添加到 ~/.zshrc 或 ~/.bashrc 以永久生效
echo 'export ARK_API_KEY="你的API密钥"' >> ~/.zshrc
source ~/.zshrc
# Windows PowerShell
$env:ARK_API_KEY="你的API密钥"
# 或者设置系统环境变量以永久生效
[System.Environment]::SetEnvironmentVariable('ARK_API_KEY', '你的API密钥', 'User')
方式二:通过 LobsterAI 启动时注入
LobsterAI 会自动读取系统环境变量,确保在启动 LobsterAI 前已设置 ARK_API_KEY。
如何获取 API Key: 1.
(truncated - see the full file via the links below)
Read as markdown · JSON record · Browse the source repository
File tree — 4 files
SKILLs/seedance/SKILL.md
SKILLs/seedance/scripts/generate-video.ps1
SKILLs/seedance/scripts/generate-video.sh
SKILLs/seedance/scripts/generate_video.js