This commit is contained in:
qikongjian 2025-09-22 23:30:33 +08:00
parent 759ca3f12c
commit b3f8097f98
2 changed files with 2 additions and 2 deletions

View File

@ -36,7 +36,7 @@ export function useWorkflowData({ onEditPlanGenerated, editingStatus, onExportFa
}
};
const cutUrl = process.env.NEXT_PUBLIC_CUT_URL || 'https://cut.movieflow.ai';
const cutUrl = process.env.NEXT_PUBLIC_CUT_URL || 'https://smartcut.api.movieflow.ai';
console.log('cutUrl', cutUrl);
useEffect(() => {

View File

@ -115,7 +115,7 @@ export class VideoExportService {
this.config = {
maxRetries: config.maxRetries || 3,
pollInterval: config.pollInterval || 5000, // 5秒轮询
apiBaseUrl: process.env.NEXT_PUBLIC_CUT_URL || 'https://smartcut.movieflow.ai'
apiBaseUrl: process.env.NEXT_PUBLIC_CUT_URL || 'https://smartcut.api.movieflow.ai'
};
}