头像视频合成支持动态模型

This commit is contained in:
spllzh
2025-10-09 08:38:17 +08:00
parent e5cba62007
commit 6dff49fcc1
30 changed files with 376 additions and 36 deletions

View File

@@ -105,6 +105,9 @@ public class DifyWorkflowResponseDto {

View File

@@ -65,6 +65,12 @@ public class VideoSynthesisRequestDto {
@Schema(description = "头部动作强度", example = "0.7")
private BigDecimal headMoveStrength = new BigDecimal("0.7");
@Schema(description = "人脸区域坐标 [x1, y1, x2, y2]", example = "[302,286,610,593]")
private String faceBbox;
@Schema(description = "动态区域坐标 [x1, y1, x2, y2]", example = "[71,9,840,778]")
private String extBbox;
@Schema(description = "输入数据", example = "{\"image_url\": \"http://xxx/1.jpg\", \"audio_url\": \"http://xxx/1.wav\"}")
private Map<String, String> input;