auto-save 2026-05-27 23:08 (~5)

This commit is contained in:
2026-05-27 23:08:22 +08:00
parent d7f72f6b42
commit 538b24a2fd
5 changed files with 72 additions and 11 deletions

View File

@@ -173,7 +173,7 @@ const normalizeRuntimeVideoModel = (item) => {
const sizeOptions = normalizeRuntimeSizeOptions(item.size_options)
const durationOptions = normalizeRuntimeDurationOptions(item.duration_options)
const resolutionOptions = normalizeRuntimeResolutionOptions(item.resolution_options)
const resolutions = resolutionOptions.map(option => option.key)
const resolutions = resolutionOptions.length ? resolutionOptions.map(option => option.key) : ['720p']
const defaultResolution = item.default_resolution || resolutions[0] || '720p'
return {
label: item.label || item.model || key,