Spaces:
Sleeping
Sleeping
File size: 805 Bytes
1185ec1 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 |
export type ClapHeader = {
format: "clap-0"
}
export type ClapMeta = {
id: string
title: string
description: string
licence: string
orientation: string
width: number
height: number
defaultVideoModel: string
}
export type ClapSegment = {
id: string
track: number
startTimeInMs: number
endTimeInMs: number
category: "render" | "preview" | "characters" | "location" | "time" | "era" | "lighting" | "weather" | "action" | "music" | "sound" | "dialogue" | "style" | "camera" | "generic"
modelId: string
prompt: string
outputType: "text" | "movement" | "image" | "video" | "audio"
renderId: string
status: "pending" | "completed" | "error"
assetUrl: string
outputGain: number
seed: number
}
export type ClapProject = {
meta: ClapMeta
segments: ClapSegment[]
}
|