dLazy AIdLazy AI
Model ReferenceVideo Models

jimeng-dream-actor

Jimeng character/action-driven video model, supports reference image and video input, suitable for character acting, action transfer, and style-consistent generation.

Jimeng character/action-driven video model, supports reference image and video input, suitable for character acting, action transfer, and style-consistent generation.

Overview

FieldValue
Model IDjimeng-dream-actor-m1-gen-video-cv
CLIdlazy jimeng-dream-actor
MCPjimeng-dream-actor (Claude Code surfaces this as mcp__dlazy__jimeng-dream-actor)
Typevideo
ExecutionAsync task; the CLI polls until completion (--no-wait returns generateId immediately)
BatchSupports --batch <n> parallel fan-out

Parameters

ArgTypeRequiredNotes
promptstringYesPrompt
imagesarray<url>NoImages; image (accepts URL, local path, or data: URL); max 1 items
videosarray<url>YesVideos; video (accepts URL, local path, or data: URL); max 1 items

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

CLI Examples

dlazy jimeng-dream-actor --help
dlazy jimeng-dream-actor --prompt "Write your prompt here" --videos "https://example.com/source.mp4" --images "https://example.com/reference.jpg"
dlazy jimeng-dream-actor --prompt "Write your prompt here" --videos "https://example.com/source.mp4" --images "./local-image.png"
dlazy jimeng-dream-actor --prompt "Write your prompt here" --videos "https://example.com/source.mp4" --images "https://example.com/reference.jpg" --dry-run
dlazy jimeng-dream-actor --prompt "Write your prompt here" --videos "https://example.com/source.mp4" --images "https://example.com/reference.jpg" --no-wait
dlazy jimeng-dream-actor --prompt "Write your prompt here" --videos "https://example.com/source.mp4" --images "https://example.com/reference.jpg" --batch 4

Compose with a pipeline

dlazy gpt-image-2 --prompt "reference visual" \
  | dlazy jimeng-dream-actor --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__jimeng-dream-actor; generic clients (e.g. OpenClaw) call it as jimeng-dream-actor.

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