太多分镜失败 错误提示

This commit is contained in:
北枳 2025-09-08 14:20:40 +08:00
parent 473938250c
commit fc9005e9a6
2 changed files with 4 additions and 4 deletions

View File

@ -6,4 +6,4 @@ NEXT_PUBLIC_CUT_URL = https://smartcut.movieflow.ai
# NEXT_PUBLIC_JAVA_URL = https://test.java.movieflow.ai # NEXT_PUBLIC_JAVA_URL = https://test.java.movieflow.ai
# NEXT_PUBLIC_BASE_URL = https://test.video.movieflow.ai # NEXT_PUBLIC_BASE_URL = https://test.video.movieflow.ai
# 失败率 # 失败率
NEXT_PUBLIC_ERROR_CONFIG = 0.5 NEXT_PUBLIC_ERROR_CONFIG = 0.1

View File

@ -213,10 +213,10 @@ export function useWorkflowData({ onEditPlanGenerated }: UseWorkflowDataProps =
useEffect(() => { useEffect(() => {
// 主动触发剪辑 // 主动触发剪辑
if (canGoToCut && taskObject.currentStage === 'video') { if (canGoToCut && taskObject.currentStage === 'video' && !isShowError) {
generateEditPlan(retryCount - 1); generateEditPlan(retryCount - 1);
} }
}, [canGoToCut, taskObject.currentStage, retryCount]); }, [canGoToCut, taskObject.currentStage, retryCount, isShowError]);
useEffect(() => { useEffect(() => {
// 加载剪辑计划结束 并且 失败了 重试 // 加载剪辑计划结束 并且 失败了 重试
@ -227,7 +227,7 @@ export function useWorkflowData({ onEditPlanGenerated }: UseWorkflowDataProps =
useEffect(() => { useEffect(() => {
if (isShowError) { if (isShowError) {
window.msg.error('Too many failed storyboards, unable to execute automatic editing.', 3000); window.msg.error('Too many failed storyboards, unable to execute automatic editing.', 8000);
} }
}, [isShowError]); }, [isShowError]);