模型参考视频模型
heygen-lipsync-speed
HeyGen Lipsync Speed:快速唇形同步模型,适合对生成速度要求较高的场景
HeyGen Lipsync Speed:快速唇形同步模型,适合对生成速度要求较高的场景
概览
| 字段 | 值 |
|---|---|
| Model ID | heygen-lipsync-speed |
| CLI | dlazy heygen-lipsync-speed |
| MCP | heygen-lipsync-speed(在 Claude Code 中显示为 mcp__dlazy__heygen-lipsync-speed) |
| 类型 | video |
| 执行 | 异步任务,默认轮询直到完成(--no-wait 可立即返回 generateId) |
| 批量 | 支持 --batch <n> 并行扇出 |
参数
| 参数 | 类型 | 必填 | 说明 |
|---|---|---|---|
video_url | url | Yes | 视频链接;video(接受 URL、本地路径或 data: URL) |
audio_url | url | Yes | 音频链接;audio(接受 URL、本地路径或 data: URL) |
title | string | No | 标题(自定义) |
enable_caption | string | No | 生成字幕;默认 false |
enable_dynamic_duration | string | No | 允许动态调整时长;默认 true |
disable_music_track | string | No | 移除原视频背景音乐;默认 false |
enable_speech_enhancement | string | No | 增强替换的音频质量;默认 false |
start_time | string | No | 部分同步起始时间 (秒) |
end_time | string | No | 部分同步结束时间 (秒) |
--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。