Skip to content

视频换脸

把源人脸替换到目标视频中。

http
POST /v1/videos/faceswap
参数类型必填说明
facestring要换上去的源人脸,URL 或 base64
target_videostring公开 HTTP(S) 视频地址,不支持 base64
webhook_urlstring完成回调地址
bash
curl -X POST https://api.modelgo.moneygo.ai/v1/videos/faceswap \
  -H "Authorization: Bearer sk-你的Key" \
  -H "Idempotency-Key: face-video-1001" \
  -H "Content-Type: application/json" \
  -d '{"face":"https://example.com/face.jpg","target_video":"https://example.com/target.mp4"}'