This commit is contained in:
2026-07-01 10:20:51 +08:00
parent ee2867ff1a
commit 9309a7ffdd
4 changed files with 18 additions and 18 deletions
+10 -10
View File
@@ -70,8 +70,8 @@ const AdminVideoEngines: React.FC = () => {
supported_resolutions: JSON.stringify(values.supportedResolutions || []),
supported_durations: JSON.stringify(values.supportedDurations || []),
max_duration: values.maxDuration ?? 15,
max_image_count: values.maxImageCount ?? 5,
max_video_count: values.maxVideoCount ?? 2,
max_image_count: values.maxImageCount ?? 2,
max_video_count: values.maxVideoCount ?? 0,
is_active: values.isActive ?? true,
priority: values.priority ?? 0,
};
@@ -108,14 +108,14 @@ const AdminVideoEngines: React.FC = () => {
} else {
form.resetFields();
form.setFieldsValue({
isActive: true, priority: 0,
maxDuration: 15,
maxImageCount: 5,
maxVideoCount: 2,
supportedRatios: ['16:9', '4:3', '1:1', '3:4', '9:16', '21:9'],
supportedResolutions: ['480p', '720p', '1080p'],
supportedDurations: [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
});
isActive: true, priority: 0,
maxDuration: 15,
maxImageCount: 2,
maxVideoCount: 0,
supportedRatios: ['16:9', '4:3', '1:1', '3:4', '9:16', '21:9'],
supportedResolutions: ['480p', '720p', '1080p'],
supportedDurations: [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
});
}
};