dLazy AIdLazy AI
Model ReferenceVideo Models

pixverse-c1

PixVerse C1 video model (strong on action, VFX, and high-motion scenes) — one model covers text-to-video, image-to-video, first/last-frame-to-video, and reference-to-video: t2v when no images, i2v with first frame only, kf2v with first+last frames, r2v with reference images.

PixVerse C1 video model (strong on action, VFX, and high-motion scenes) — one model covers text-to-video, image-to-video, first/last-frame-to-video, and reference-to-video: t2v when no images, i2v with first frame only, kf2v with first+last frames, r2v with reference images.

Overview

FieldValue
Model IDpixverse-c1
CLIdlazy pixverse-c1
MCPpixverse-c1 (Claude Code surfaces this as mcp__dlazy__pixverse-c1)
Typevideo
ExecutionAsync task; the CLI polls until completion (--no-wait returns generateId immediately)
BatchSupports --batch <n> parallel fan-out

Parameters

ArgTypeRequiredNotes
promptstringYesPrompt
generation_mode"components" | "frames"NoGeneration Mode(components=Components; frames=Frames); default "components"
imagesarray<url>NoImages; image (accepts URL, local path, or data: URL); max 7 items; only when !(generation_mode="frames")
firstFrameurlNoFirst Frame; image (accepts URL, local path, or data: URL); only when generation_mode="frames"
lastFrameurlNoLast Frame; image (accepts URL, local path, or data: URL); only when generation_mode="frames"
resolution"360P" | "540P" | "720P" | "1080P"NoResolution; default "720P"
aspectRatio"16:9" | "4:3" | "1:1" | "3:4" | "9:16" | "3:2" | "2:3" | "21:9"NoAspect Ratio; default "16:9"
duration"1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "13" | "14" | "15"NoDuration (s); default "5"
generate_audio"true" | "false"NoGenerate Audio; default "false"

--input @file.json or --input '{...}' can supply all args at once; flags take precedence over --input keys.

CLI Examples

dlazy pixverse-c1 --help
dlazy pixverse-c1 --prompt "Write your prompt here" --images "https://example.com/reference1.jpg" "https://example.com/reference2.jpg"
dlazy pixverse-c1 --prompt "Write your prompt here" --images "./local-image.png"
dlazy pixverse-c1 --prompt "Write your prompt here" --images "https://example.com/reference1.jpg" "https://example.com/reference2.jpg" --dry-run
dlazy pixverse-c1 --prompt "Write your prompt here" --images "https://example.com/reference1.jpg" "https://example.com/reference2.jpg" --no-wait
dlazy pixverse-c1 --prompt "Write your prompt here" --images "https://example.com/reference1.jpg" "https://example.com/reference2.jpg" --batch 4

Compose with a pipeline

dlazy gpt-image-2 --prompt "reference visual" \
  | dlazy pixverse-c1 --images - --prompt "Write your prompt here"

MCP

MCP is consumed by AI clients, not handwritten. Once dLazy is registered as an MCP server the tool appears in the client's tool list — Claude Code surfaces it as mcp__dlazy__pixverse-c1; generic clients (e.g. OpenClaw) call it as pixverse-c1.

See MCP setup for how to add the server.

Output

{
  "outputs": [
    { "type": "video", "id": "o_...", "url": "https://files.dlazy.com/result.mp4", "mimeType": "video/mp4" }
  ]
}

Media tools emit image / video / audio / file outputs. Use --output url to print only the URLs on stdout.

On this page