dLazy AIdLazy AI
模型参考视频模型

heygen-lipsync-speed

HeyGen Lipsync Speed:快速唇形同步模型,适合对生成速度要求较高的场景

HeyGen Lipsync Speed:快速唇形同步模型,适合对生成速度要求较高的场景

概览

字段
Model IDheygen-lipsync-speed
CLIdlazy heygen-lipsync-speed
MCPheygen-lipsync-speed(在 Claude Code 中显示为 mcp__dlazy__heygen-lipsync-speed
类型video
执行异步任务,默认轮询直到完成(--no-wait 可立即返回 generateId
批量支持 --batch <n> 并行扇出

参数

参数类型必填说明
video_urlurlYes视频链接;video(接受 URL、本地路径或 data: URL)
audio_urlurlYes音频链接;audio(接受 URL、本地路径或 data: URL)
titlestringNo标题(自定义)
enable_captionstringNo生成字幕;默认 false
enable_dynamic_durationstringNo允许动态调整时长;默认 true
disable_music_trackstringNo移除原视频背景音乐;默认 false
enable_speech_enhancementstringNo增强替换的音频质量;默认 false
start_timestringNo部分同步起始时间 (秒)
end_timestringNo部分同步结束时间 (秒)

--input @file.json--input '{...}' 也可一次性提供所有参数;命令行 flag 优先级更高。

CLI 示例

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

与管道组合

dlazy seedance-2.0-fast --prompt "参考视频" \
  | dlazy heygen-lipsync-speed --video_url -

MCP

MCP 由 AI 客户端调用,无需手写示例。把 dLazy 注册成 MCP server 后,工具会自动出现在客户端的工具列表里——Claude Code 中名字是 mcp__dlazy__heygen-lipsync-speed,OpenClaw 等通用客户端按裸 heygen-lipsync-speed 调用。

添加 MCP server 见 MCP 集成

输出

{
  "outputs": [
    { "type": "video", "id": "o_...", "url": "https://files.dlazy.com/result.mp4", "mimeType": "video/mp4" }
  ]
}

媒体类型工具返回 image / video / audio / file output;可通过 --output url 让 stdout 只保留 URL。

On this page