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
| Field | Value |
|---|---|
| Model ID | jimeng-dream-actor-m1-gen-video-cv |
| CLI | dlazy jimeng-dream-actor |
| MCP | jimeng-dream-actor (Claude Code surfaces this as mcp__dlazy__jimeng-dream-actor) |
| Type | video |
| Execution | Async task; the CLI polls until completion (--no-wait returns generateId immediately) |
| Batch | Supports --batch <n> parallel fan-out |
Parameters
| Arg | Type | Required | Notes |
|---|---|---|---|
prompt | string | Yes | Prompt |
images | array<url> | No | Images; image (accepts URL, local path, or data: URL); max 1 items |
videos | array<url> | Yes | Videos; video (accepts URL, local path, or data: URL); max 1 items |
--input @file.jsonor--input '{...}'can supply all args at once; flags take precedence over--inputkeys.
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 4Compose 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.