cang-ying/feedback/D132-shot2-duration-costume-fix.hdlp
Guanghu Domestic Migration a2fa7d57d8 chore: import sanitized domestic snapshot for REPO-005
Source snapshot: 23037fa3a2e9b0597162735755e92fc763bf4d94
2026-07-17 15:55:48 +08:00

45 lines
1.5 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# D132 镜2 · 时长+服饰双重修复
> HLDP://video-ai-system/feedback/D132-shot2-duration-costume-fix
> 铸渊 ICE-GL-ZY001 · 2026-06-15
---
## 问题1: 时长5秒而非10秒
**现象**: 传duration=10实际生成5.042秒
**根因**: 代码用了 `parameters.video_length` 但Seedance 2.0 API的参数名是 `duration`
| 项目 | 错误 | 正确 |
|------|------|------|
| 参数名 | video_length | duration |
| 参数类型 | String('10') | Number(10) |
| 取值范围 | — | 4-15秒标准模式 |
**修复**: video-api-adapter.js submitTask() 中 `video_length: String(duration)` → `duration: Number(duration)`
**影响**: 秦山号所有声称10秒的镜头实际都是5秒。历史数据全部偏小。
## 问题2: 白色长衫变灰色破烂衣
**现象**: CHAR-003苏白穿的不是白色长衫像灰色麻布乞丐装
**根因**: "白色长衫"太笼统 → Seedance理解成了最普通的麻布白袍
**修复**: CHAR-003 L0提示词片段 + L1服饰
| 旧 | 新 |
|----|-----|
| 白色长衫·腰间束带·袖口挽起 | 月白色云纹锦缎长衫·腰间系青色丝绦·衣袂轻扬·修仙少年装扮 |
| 黑色短发 | 黑色长发·半束半披 |
**关键原则**来自Seedance五要素导演法:
- 颜色要具体: "白"→"月白"
- 材质要写明: "长衫"→"云纹锦缎长衫"
- 状态要动态: "穿"→"衣袂在灵气中轻扬"
- 朝代要锚定: "衣服"→"中国古代修仙装扮"
---
铸渊 ICE-GL-ZY001 · D132