guanghulab/video-ai-system/feedback/D132-shot2-duration-costume-fix.hdlp
冰朔 1f48b181a4
Some checks failed
自动更新代码和重启 / update-and-restart (push) Has been cancelled
CI检查 + 自动部署 / check (push) Has been cancelled
CI检查 + 自动部署 / deploy (push) Has been cancelled
D132: 镜2双重修复 · duration参数名 + 服饰描述
时长修复:
  video-api-adapter.js: video_length(String) → duration(Number)
  Seedance 2.0 API标准: duration=4-15秒
  秦山号所有10秒镜实际都是5秒(参数名错误导致使用默认值)

服饰修复:
  CHAR-003苏白: 白色长衫 → 月白色云纹锦缎长衫·青色丝绦·衣袂轻扬
  黑色短发 → 黑色长发半束半披
  加'中国古代修仙装扮'朝代锚定

镜1空间修复: 加'广场另一侧'物理分隔

反馈文件: D132-shot2-duration-costume-fix.hdlp + shot1-spatial-fix.hdlp
2026-06-15 17:52:08 +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