模型参考视频模型
pixverse-c1
爱诗 PixVerse C1 视频生成模型(擅长打斗、法术特效、高速运动等高动态场景),一站式覆盖文生视频、图生视频、首尾帧生视频与参考图生视频:未提供图时走文生视频,仅首帧时走图生视频,首+尾帧时走首尾帧生视频,提供参考图时走参考图生视频。
爱诗 PixVerse C1 视频生成模型(擅长打斗、法术特效、高速运动等高动态场景),一站式覆盖文生视频、图生视频、首尾帧生视频与参考图生视频:未提供图时走文生视频,仅首帧时走图生视频,首+尾帧时走首尾帧生视频,提供参考图时走参考图生视频。
概览
| 字段 | 值 |
|---|---|
| Model ID | pixverse-c1 |
| CLI | dlazy pixverse-c1 |
| MCP | pixverse-c1(在 Claude Code 中显示为 mcp__dlazy__pixverse-c1) |
| 类型 | video |
| 执行 | 异步任务,默认轮询直到完成(--no-wait 可立即返回 generateId) |
| 批量 | 支持 --batch <n> 并行扇出 |
参数
| 参数 | 类型 | 必填 | 说明 |
|---|---|---|---|
prompt | string | Yes | 提示词 |
generation_mode | "components" | "frames" | No | 生成模式(components=参考图; frames=首尾帧);默认 "components" |
images | array<url> | No | 参考图;image(接受 URL、本地路径或 data: URL);最多 7 项;仅当 !(generation_mode="frames") |
firstFrame | url | No | 首帧图;image(接受 URL、本地路径或 data: URL);仅当 generation_mode="frames" |
lastFrame | url | No | 尾帧图;image(接受 URL、本地路径或 data: URL);仅当 generation_mode="frames" |
resolution | "360P" | "540P" | "720P" | "1080P" | No | 分辨率;默认 "720P" |
aspectRatio | "16:9" | "4:3" | "1:1" | "3:4" | "9:16" | "3:2" | "2:3" | "21:9" | No | 画幅比例;默认 "16:9" |
duration | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "13" | "14" | "15" | No | 时长(秒);默认 "5" |
generate_audio | "true" | "false" | No | 生成音频;默认 "false" |
--input @file.json与--input '{...}'也可一次性提供所有参数;命令行 flag 优先级更高。
CLI 示例
dlazy pixverse-c1 --help
dlazy pixverse-c1 --prompt "请在这里填写提示词" --images "https://example.com/reference1.jpg" "https://example.com/reference2.jpg"
dlazy pixverse-c1 --prompt "请在这里填写提示词" --images "./local-image.png"
dlazy pixverse-c1 --prompt "请在这里填写提示词" --images "https://example.com/reference1.jpg" "https://example.com/reference2.jpg" --dry-run
dlazy pixverse-c1 --prompt "请在这里填写提示词" --images "https://example.com/reference1.jpg" "https://example.com/reference2.jpg" --no-wait
dlazy pixverse-c1 --prompt "请在这里填写提示词" --images "https://example.com/reference1.jpg" "https://example.com/reference2.jpg" --batch 4与管道组合
dlazy gpt-image-2 --prompt "参考图" \
| dlazy pixverse-c1 --images - --prompt "请在这里填写提示词"MCP
MCP 由 AI 客户端调用,无需手写示例。把 dLazy 注册成 MCP server 后,工具会自动出现在客户端的工具列表里——Claude Code 中名字是 mcp__dlazy__pixverse-c1,OpenClaw 等通用客户端按裸 pixverse-c1 调用。
添加 MCP server 见 MCP 集成。
输出
{
"outputs": [
{ "type": "video", "id": "o_...", "url": "https://files.dlazy.com/result.mp4", "mimeType": "video/mp4" }
]
}媒体类型工具返回 image / video / audio / file output;可通过 --output url 让 stdout 只保留 URL。