dLazy AIdLazy AI
Model ReferenceVideo Models

jimeng-i2v-first-tail

Jimeng first/last-frame video model; constrains shot start/end frames. Good for transitions and clearly resolved action.

Jimeng first/last-frame video model; constrains shot start/end frames. Good for transitions and clearly resolved action.

Overview

FieldValue
Model IDjimeng-i2v-first-tail-v30
CLIdlazy jimeng-i2v-first-tail
MCPjimeng-i2v-first-tail (Claude Code surfaces this as mcp__dlazy__jimeng-i2v-first-tail)
Typevideo
ExecutionAsync task; the CLI polls until completion (--no-wait returns generateId immediately)
BatchSupports --batch <n> parallel fan-out

Parameters

ArgTypeRequiredNotes
promptstringYesPrompt
generation_mode"frames"NoGeneration Mode; default "frames"
firstFrameurlNoFirst Frame; image (accepts URL, local path, or data: URL)
lastFrameurlNoLast Frame; image (accepts URL, local path, or data: URL)
duration"5" | "10"NoDuration (s); default "5"

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

CLI Examples

dlazy jimeng-i2v-first-tail --help
dlazy jimeng-i2v-first-tail --prompt "Write your prompt here" --firstFrame "https://example.com/reference.jpg" --lastFrame "https://example.com/reference.jpg"
dlazy jimeng-i2v-first-tail --prompt "Write your prompt here" --firstFrame "./local-image.png" --lastFrame "https://example.com/reference.jpg"
dlazy jimeng-i2v-first-tail --prompt "Write your prompt here" --firstFrame "https://example.com/reference.jpg" --lastFrame "https://example.com/reference.jpg" --dry-run
dlazy jimeng-i2v-first-tail --prompt "Write your prompt here" --firstFrame "https://example.com/reference.jpg" --lastFrame "https://example.com/reference.jpg" --no-wait
dlazy jimeng-i2v-first-tail --prompt "Write your prompt here" --firstFrame "https://example.com/reference.jpg" --lastFrame "https://example.com/reference.jpg" --batch 4

Compose with a pipeline

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

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