auto-save 2026-05-14 10:14 (~7)

This commit is contained in:
2026-05-14 10:14:43 +08:00
parent 96784f9df1
commit ee32d83b6c
7 changed files with 2398 additions and 2330 deletions

View File

@@ -199,6 +199,7 @@ export interface KeyFrame {
timestamp: number
url: string
description?: FrameDescription | null
transparent_human_score?: TransparentHumanFrameScore | null
cleaned_url?: string | null
cleaned_applied?: boolean
quality_report?: QualityReport | null
@@ -208,7 +209,7 @@ export interface KeyFrame {
generated_images?: GeneratedImage[]
}
export type FrameExtractTarget = "balanced" | "subject" | "transition" | "expression" | "motion"
export type FrameExtractTarget = "transparent_human" | "balanced" | "subject" | "transition" | "expression" | "motion"
export type FrameExtractMode = "replace" | "append"
export type FrameExtractQuality = "auto" | "fast" | "accurate" | "ultra"
export type AssetBackground = "white" | "black"