dLazy AIdLazy AI
Model ReferenceVideo Models

heygen-lipsync-speed

HeyGen Lipsync Speed: Fast lip-sync model, ideal for scenarios requiring rapid generation.

HeyGen Lipsync Speed: Fast lip-sync model, ideal for scenarios requiring rapid generation.

Overview

FieldValue
Model IDheygen-lipsync-speed
CLIdlazy heygen-lipsync-speed
MCPheygen-lipsync-speed (Claude Code surfaces this as mcp__dlazy__heygen-lipsync-speed)
Typevideo
ExecutionAsync task; the CLI polls until completion (--no-wait returns generateId immediately)
BatchSupports --batch <n> parallel fan-out

Parameters

ArgTypeRequiredNotes
video_urlurlYesVideo URL; video (accepts URL, local path, or data: URL)
audio_urlurlYesAudio URL; audio (accepts URL, local path, or data: URL)
titlestringNoTitle
enable_captionstringNoGenerate Captions; default false
enable_dynamic_durationstringNoDynamic Duration Adjustment; default true
disable_music_trackstringNoRemove Original Background Music; default false
enable_speech_enhancementstringNoEnhance Audio Quality; default false
start_timestringNoStart Time (Seconds)
end_timestringNoEnd Time (Seconds)

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

CLI Examples

dlazy heygen-lipsync-speed --help
dlazy heygen-lipsync-speed --video_url "https://example.com/source.mp4" --audio_url "https://example.com/source.mp3"
dlazy heygen-lipsync-speed --video_url "./local-video.mp4" --audio_url "https://example.com/source.mp3"
dlazy heygen-lipsync-speed --video_url "https://example.com/source.mp4" --audio_url "https://example.com/source.mp3" --dry-run
dlazy heygen-lipsync-speed --video_url "https://example.com/source.mp4" --audio_url "https://example.com/source.mp3" --no-wait
dlazy heygen-lipsync-speed --video_url "https://example.com/source.mp4" --audio_url "https://example.com/source.mp3" --batch 4

Compose with a pipeline

dlazy seedance-2.0-fast --prompt "reference clip" \
  | dlazy heygen-lipsync-speed --video_url -

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__heygen-lipsync-speed; generic clients (e.g. OpenClaw) call it as heygen-lipsync-speed.

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