dLazy AIdLazy AI
Model ReferenceVideo Models

video-replicate

Video replicate tool: extracts the first frame and audio from the source video, runs video understanding for a prompt, and returns a Seedance 2.0 replicate bundle (first frame + audio + video).

Video replicate tool: extracts the first frame and audio from the source video, runs video understanding for a prompt, and returns a Seedance 2.0 replicate bundle (first frame + audio + video).

Overview

FieldValue
Model IDvideo-replicate
CLIdlazy video-replicate
MCPvideo-replicate (Claude Code surfaces this as mcp__dlazy__video-replicate)
Typevideo
ExecutionAsync task; the CLI polls until completion (--no-wait returns generateId immediately)
BatchSupports --batch <n> parallel fan-out

Parameters

ArgTypeRequiredNotes
videosarray<url>YesVideos; video (accepts URL, local path, or data: URL)
durationSecondsstringNoDuration (s)

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

CLI Examples

dlazy video-replicate --help
dlazy video-replicate --videos "https://example.com/source1.mp4" "https://example.com/source2.mp4"
dlazy video-replicate --videos "./local-video.mp4"
dlazy video-replicate --videos "https://example.com/source1.mp4" "https://example.com/source2.mp4" --dry-run
dlazy video-replicate --videos "https://example.com/source1.mp4" "https://example.com/source2.mp4" --no-wait
dlazy video-replicate --videos "https://example.com/source1.mp4" "https://example.com/source2.mp4" --batch 4

Compose with a pipeline

dlazy seedance-2.0-fast --prompt "reference clip" \
  | dlazy video-replicate --videos -

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__video-replicate; generic clients (e.g. OpenClaw) call it as video-replicate.

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