← 返回 Skills 市场
Jimeng Video
作者
onlyloveher
· GitHub ↗
· v1.0.0
· MIT-0
198
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install jimeng-video-v1
功能描述
即梦AI视频生成工具(带声音版本),通过火山引擎API自动生成带音频的高质量视频。支持文生视频、图生视频,适用于短视频内容创作。
使用说明 (SKILL.md)
jimeng-video Skill v2.0
即梦AI(Dreamina)视频生成工具 - 带声音版本
🎉 v2.0 重大更新
✅ 支持生成带声音的视频!
默认使用 doubao-seedance-1-5-pro-251215 模型,生成的视频自带音频(环境音/背景音乐/音效),无需后期配音!
功能特性
- 🎵 文生音视频:输入文字描述,自动生成带声音的视频
- 🎵 图生音视频:上传图片,生成带声音的动态视频
- 🎨 多模型支持:支持多个视频生成模型(带声音/纯视频)
- ⚡ 批量生成:支持一次性生成多个视频
- 📊 任务管理:创建任务、查询状态、获取结果
支持的模型
🌟 推荐模型(默认)
| 模型ID | 类型 | 特点 | 音频 |
|---|---|---|---|
doubao-seedance-1-5-pro-251215 |
文生音视频 | 生成视频自带声音,效果最好 | ✅ 带声音 |
其他可用模型
| 模型ID | 类型 | 特点 | 音频 |
|---|---|---|---|
doubao-seedance-1-0-pro-250528 |
视频生成 | Pro版,质量高 | ❌ 无声 |
doubao-seedance-1-0-lite-t2v-250428 |
文生视频 | 轻量版,速度快 | ❌ 无声 |
doubao-seedance-2-0-260128 |
视频生成 | 最新版,功能强 | ❌ 无声 |
快速开始
1. 生成带声音的视频(默认)
# 使用默认模型(带声音)
jimeng-video generate \
-p "一匹马高高跃起,四个字从左到右书写,水墨风格,文字内容是马年大吉" \
-o output.mp4
# 生成的视频将包含:画面 + 自动生成的音效/音乐
2. 指定纯视频模型(无声)
# 使用旧版模型(无声,如需纯画面)
jimeng-video generate \
-m doubao-seedance-1-0-lite-t2v-250428 \
-p "夕阳下的海滩,金色的阳光洒在波浪上" \
-o beach.mp4
3. 批量生成
# 从文件批量生成
jimeng-video batch \
--file prompts.txt \
--output-dir ./videos/
4. 查询任务状态
# 查询指定任务
jimeng-video status --task-id cgt-20260228005550-95t42
API 调用示例
生成带声音的视频
curl -X POST "https://ark.cn-beijing.volces.com/api/v3/contents/generations/tasks" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer ${API_KEY}" \
-d '{
"model": "doubao-seedance-1-5-pro-251215",
"content": [
{
"type": "text",
"text": "你的提示词内容"
}
]
}'
查询结果
curl -X GET "https://ark.cn-beijing.volces.com/api/v3/contents/generations/tasks/{task_id}" \
-H "Authorization: Bearer ${API_KEY}"
提示词技巧
带声音视频的有效提示词结构
[场景描述] + [动作/事件] + [氛围/情绪] + [声音提示]
示例(带声音暗示):
- ✅ "热闹的台球厅,球杆击球声,人群的欢呼,专业比赛氛围"
- ✅ "海浪拍打沙滩,海鸥叫声,轻松惬意的夏日午后"
- ✅ "繁忙的城市街道,车声喇叭声,霓虹灯闪烁的夜晚"
声音相关关键词(帮助模型生成更好音效):
- 环境音:"嘈杂的人群声"、"雨声"、"风声"
- 动作音:"击球声"、"键盘敲击声"、"脚步声"
- 情绪音:"欢快的音乐"、"紧张的氛围"、"舒缓的旋律"
配置说明
环境变量
在 ~/.openclaw/.credentials/volcengine-dreamina.env 中配置:
VOLCENGINE_ACCESS_KEY_ID=your-access-key-id
VOLCENGINE_SECRET_ACCESS_KEY=your-secret-key
获取API Key
- 登录火山引擎控制台:
console.volcengine.com - 进入「访问控制」→「API Key管理」
- 创建新的API Key
- 开通即梦AI视频生成服务
模型对比
| 维度 | 1.5 Pro(带声音) | 1.0 Lite(无声) |
|---|---|---|
| 音频 | ✅ 自动生成 | ❌ 需后期添加 |
| 画质 | 1080p | 720p/1080p |
| 生成速度 | 30-40秒 | 15-25秒 |
| 适用场景 | 短视频成品 | 素材/需后期配音 |
| 价格 | 较高 | 较低 |
建议:
- 成品视频 → 使用 1.5 Pro(带声音)
- 素材剪辑 → 使用 1.0 Lite(无声)
返回结果
成功响应(带声音模型)
{
"id": "cgt-20260228140147-6t2sz",
"model": "doubao-seedance-1-5-pro-251215",
"status": "succeeded",
"content": {
"video_url": "https://..."
},
"generate_audio": true,
"resolution": "720p",
"duration": 5,
"framespersecond": 24
}
关键字段:
generate_audio: true- 表示包含音频生成video_url- 视频下载链接(包含音视频)duration- 视频时长(秒)
使用场景
- 短视频创作:直接生成带声音的成品视频
- 广告制作:快速产出带音效的广告素材
- 内容运营:自动生成带背景音的短视频
- 创意实验:AI自动生成完整音视频内容
注意事项
- 音频质量:自动生成的音频是AI合成的环境音/音乐,不是真实录音
- 生成时间:带声音版本比无声版本慢约50%(30-40秒 vs 15-25秒)
- 定制音频:如需特定音乐,建议用无声版本+后期添加
- 音量平衡:自动音频音量适中,如需调整请后期处理
故障排查
模型未开通
错误: ModelNotOpen
解决: 在火山引擎控制台开通即梦AI 1.5 Pro服务
生成超时
现象: 任务长时间 running 解决: 带声音模型生成较慢,请耐心等待(最长2分钟)
音频不满意
解决:
- 调整提示词中的声音描述
- 或使用无声模型+后期添加自定义音乐
更新日志
v2.0.0 (2026-02-28)
- ✅ 升级默认模型为
doubao-seedance-1-5-pro-251215 - ✅ 支持生成带声音的视频
- ✅ 优化提示词文档,增加声音相关技巧
- ✅ 添加模型对比说明
v1.0.0 (2026-02-27)
- 初始版本
- 支持基础视频生成功能
让视频创作更简单,一步到位生成带声音的成品! 🎬🎵
安全使用建议
This skill appears to call Volcengine's Dreamina API and legitimately needs Volcengine API keys, but the package has several inconsistencies that merit caution: (1) registry metadata says no env vars required while skill.yaml and SKILL.md require VOLCENGINE_ACCESS_KEY_ID and VOLCENGINE_SECRET_ACCESS_KEY; (2) curl examples use ${API_KEY} (a different variable name), which could cause the agent to try to read an unexpected env var; (3) owner IDs/homepage/published metadata differ across files. Before installing: confirm the skill's source and author (verify homepage/registry publisher), only provide a minimal-scope Volcengine API key (or a test account) rather than high-privilege keys, and ensure you understand which env var the skill will actually use (map API_KEY to your Volcengine credentials if necessary). If you cannot verify the publisher or the metadata discrepancies, avoid installing or run it in an isolated environment. If you want, provide the registry/owner details or the platform mapping the agent uses for env vars and I can help map which credential names will be used at runtime.
功能分析
Type: OpenClaw Skill
Name: jimeng-video-v1
Version: 1.0.0
The skill bundle provides documentation and configuration for integrating with the Volcengine (ByteDance) Jimeng AI video generation API. It defines standard triggers and requires necessary API credentials (VOLCENGINE_ACCESS_KEY_ID/SECRET) to interact with legitimate endpoints at ark.cn-beijing.volces.com. The instructions in SKILL.md and README.md are consistent with the stated purpose of generating videos and do not contain any evidence of data exfiltration, malicious execution, or harmful prompt injection.
能力评估
Purpose & Capability
The skill claims to generate videos (with audio) via Volcengine/Dreamina and the SKILL.md provides curl calls to a Volcengine API endpoint — that is coherent with the stated purpose. However, the registry summary at the top claims no required env vars while skill.yaml and SKILL.md say API keys are required, and the skill package metadata owner/homepage values do not match the registry metadata. These metadata mismatches are unexpected and reduce trust.
Instruction Scope
Instructions are instruction-only and direct the agent to POST/GET to https://ark.cn-beijing.volces.com/api/v3/contents/generations/tasks to create and check tasks — appropriate for a video-generation skill. They also instruct storing credentials under ~/.openclaw/.credentials/volcengine-dreamina.env. A problematic detail: the curl examples use ${API_KEY} while skill.yaml documents VOLCENGINE_ACCESS_KEY_ID and VOLCENGINE_SECRET_ACCESS_KEY, creating ambiguity about which environment variables the agent will read. No other file-system paths or unrelated credentials are referenced.
Install Mechanism
No install spec and no code files are present — the skill is instruction-only, so nothing is downloaded or written by an installer. This is lower-risk from an install-mechanism perspective.
Credentials
The skill requires API credentials for Volcengine/Dreamina (VOLCENGINE_ACCESS_KEY_ID and VOLCENGINE_SECRET_ACCESS_KEY per skill.yaml and SKILL.md), which is proportionate to calling the vendor API. However, the top-level registry summary listed 'Required env vars: none', and the examples use an undefined ${API_KEY} variable instead of the declared variable names. The inconsistency could lead the agent to look for or prompt for unexpected env vars (e.g., API_KEY). No unrelated credentials are requested.
Persistence & Privilege
The skill is not marked always:true and does not request persistent system privileges or to modify other skills. It stores credentials in a skill-specific path per its docs, which is normal for API-based skills.
如何使用
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install jimeng-video-v1 - 安装完成后,直接呼叫该 Skill 的名称或使用
/jimeng-video-v1触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
jimeng-video v2.0.0 introduces AI-generated audio support for videos.
- 默认升级为 `doubao-seedance-1-5-pro-251215`,生成视频自动带环境音/音效/音乐
- 新增音视频生成(文生、图生),无需后期配音
- 批量生成、任务管理等功能保持支持
- 更新模型对比与音频提示词文档,帮助优化生成效果
元数据
常见问题
Jimeng Video 是什么?
即梦AI视频生成工具(带声音版本),通过火山引擎API自动生成带音频的高质量视频。支持文生视频、图生视频,适用于短视频内容创作。 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 198 次。
如何安装 Jimeng Video?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install jimeng-video-v1」即可一键安装,无需额外配置。
Jimeng Video 是免费的吗?
是的,Jimeng Video 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
Jimeng Video 支持哪些平台?
Jimeng Video 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Jimeng Video?
由 onlyloveher(@onlyloveher)开发并维护,当前版本 v1.0.0。
推荐 Skills