refactor(video): 重构视频配置参数标准化逻辑

- 将视频配置参数标准化逻辑提取为独立的 buildVideoConfig 函数
- 添加视频秒数、尺寸、清晰度的标准化验证函数
- 限制视频秒数只允许 6/10/12/16/20 秒的预设值
- 验证视频尺寸格式是否为标准的宽高比格式
- 优化视频生成 API 调用的错误处理机制
- 统一错误消息显示,修复页面残留生图参数影响视频请求的问题
This commit is contained in:
HouYunFei
2026-05-25 17:49:12 +08:00
parent 1be6b4fa29
commit f9e4c92ff1
3 changed files with 48 additions and 14 deletions
+22 -2
View File
@@ -173,7 +173,7 @@ export default function VideoPage() {
openConfigDialog(true);
return null;
}
return { text, config: { ...effectiveConfig, model }, references: [...references] };
return { text, config: buildVideoConfig(effectiveConfig, model), references: [...references] };
};
const retryResult = () => {
@@ -306,7 +306,7 @@ export default function VideoPage() {
<div className="flex items-center justify-between rounded-lg border border-stone-200 bg-stone-50 px-3 py-2 text-sm dark:border-stone-800 dark:bg-stone-900 sm:hidden">
<span className="truncate text-stone-500 dark:text-stone-400">
{model} · {effectiveConfig.vquality}p · {effectiveConfig.size} · {effectiveConfig.videoSeconds}s
{model} · {normalizeResolution(effectiveConfig.vquality)}p · {normalizeVideoSize(effectiveConfig.size)} · {normalizeVideoSeconds(effectiveConfig.videoSeconds)}s
</span>
<Button size="small" type="text" icon={<SlidersHorizontal className="size-4" />} onClick={() => setSettingsOpen(true)}>
@@ -569,6 +569,26 @@ function buildLog({ prompt, model, config, durationMs, status, video, error }: {
};
}
function buildVideoConfig(config: AiConfig, model: string): AiConfig {
return {
...config,
model,
videoModel: model,
size: normalizeVideoSize(config.size),
videoSeconds: normalizeVideoSeconds(config.videoSeconds),
vquality: normalizeResolution(config.vquality),
};
}
function normalizeVideoSeconds(value: string) {
const seconds = Math.floor(Number(value) || 6);
return String([6, 10, 12, 16, 20].includes(seconds) ? seconds : 6);
}
function normalizeVideoSize(value: string) {
return /^\d+x\d+$/.test(value || "") ? value : "1280x720";
}
function normalizeResolution(value: string) {
return value.replace(/p$/i, "") || "720";
}