auto-save 2026-05-14 10:45 (+1, ~5)

This commit is contained in:
2026-05-14 10:45:48 +08:00
parent 1014114df8
commit d0abed6740
6 changed files with 317 additions and 15 deletions

View File

@@ -537,6 +537,10 @@ export function videoUrl(jobId: string): string {
return `${API_BASE}/jobs/${jobId}/video.mp4`
}
export function sourceAudioUrl(jobId: string): string {
return `${API_BASE}/jobs/${jobId}/audio.wav`
}
export function cleanedFrameUrl(jobId: string, frameIndex: number, bust?: string | number): string {
const u = `${API_BASE}/jobs/${jobId}/frames/${frameIndex}/cleaned.jpg`
return bust ? `${u}?t=${bust}` : u