Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
File size: 4,746 Bytes
652f343 bda5f6b 652f343 5fb05e6 652f343 bda5f6b 652f343 5dfc565 5fb05e6 5dfc565 652f343 9658ad9 652f343 9658ad9 652f343 9658ad9 a65e95e 652f343 a65e95e 652f343 a65e95e 652f343 a65e95e 652f343 a65e95e 652f343 a65e95e 5dfc565 9658ad9 652f343 a65e95e 652f343 9658ad9 652f343 5dfc565 5fb05e6 5dfc565 652f343 c5b0dde a65e95e 652f343 bda5f6b |
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 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 |
export type VideoTransition =
| 'dissolve'
| 'bookflip'
| 'bounce'
| 'bowtiehorizontal'
| 'bowtievertical'
| 'bowtiewithparameter'
| 'butterflywavescrawler'
| 'circlecrop'
| 'colourdistance'
| 'crazyparametricfun'
| 'crosszoom'
| 'directional'
| 'directionalscaled'
| 'doomscreentransition'
| 'dreamy'
| 'dreamyzoom'
| 'edgetransition'
| 'filmburn'
| 'filmburnglitchdisplace'
| 'glitchmemories'
| 'gridflip'
| 'horizontalclose'
| 'horizontalopen'
| 'invertedpagecurl'
| 'leftright'
| 'linearblur'
| 'mosaic'
| 'overexposure'
| 'polkadotscurtain'
| 'radial'
| 'rectangle'
| 'rectanglecrop'
| 'rolls'
| 'rotatescalevanish'
| 'simplezoom'
| 'simplezoomout'
| 'slides'
| 'staticfade'
| 'stereoviewer'
| 'swirl'
| 'tvstatic'
| 'topbottom'
| 'verticalclose'
| 'verticalopen'
| 'waterdrop'
| 'waterdropzoomincircles'
| 'zoomleftwipe'
| 'zoomrigthwipe'
| 'angular'
| 'burn'
| 'cannabisleaf'
| 'circle'
| 'circleopen'
| 'colorphase'
| 'coordfromin'
| 'crosshatch'
| 'crosswarp'
| 'cube'
| 'directionaleasing'
| 'directionalwarp'
| 'directionalwipe'
| 'displacement'
| 'doorway'
| 'fade'
| 'fadecolor'
| 'fadegrayscale'
| 'flyeye'
| 'heart'
| 'hexagonalize'
| 'kaleidoscope'
| 'luma'
| 'luminance_melt'
| 'morph'
| 'mosaic_transition'
| 'multiply_blend'
| 'perlin'
| 'pinwheel'
| 'pixelize'
| 'polar_function'
| 'powerkaleido'
| 'randomnoisex'
| 'randomsquares'
| 'ripple'
| 'rotatetransition'
| 'rotate_scale_fade'
| 'scalein'
| 'squareswire'
| 'squeeze'
| 'static_wipe'
| 'swap'
| 'tangentmotionblur'
| 'undulatingburnout'
| 'wind'
| 'windowblinds'
| 'windowslice'
| 'wipedown'
| 'wipeleft'
| 'wiperight'
| 'wipeup'
| 'x_axistranslation'
export interface VideoShotMeta {
shotPrompt: string
// inputVideo?: string
// describe the background audio (crowd, birds, wind, sea etc..)
backgroundAudioPrompt: string
// describe the foreground audio (cars revving, footsteps, objects breaking, explosion etc)
foregroundAudioPrompt: string
// describe the main actor visible in the shot (optional)
actorPrompt: string
// describe the main actor voice (man, woman, old, young, amused, annoyed.. etc)
actorVoicePrompt: string
// describe the main actor dialogue line
actorDialoguePrompt: string
seed: number
noise: boolean // add movie noise
durationMs: number // in milliseconds
steps: number
fps: number // 8, 12, 24, 30, 60
resolution: string // {width}x{height} (256, 512, 576, 720, 1080)
introTransition: VideoTransition
introDurationMs: number // in milliseconds
}
export interface VideoShotData {
// must be unique
id: string
fileName: string
// used to check compatibility
version: number
// for internal use
hasGeneratedPreview: boolean
hasGeneratedVideo: boolean
hasUpscaledVideo: boolean
hasGeneratedBackgroundAudio: boolean
hasGeneratedForegroundAudio: boolean
hasGeneratedActor: boolean
hasInterpolatedVideo: boolean
hasAddedAudio: boolean
hasPostProcessedVideo: boolean
nbCompletedSteps: number
nbTotalSteps: number
progressPercent: number
completedAt: string
completed: boolean
error: string
}
export type VideoShot = VideoShotMeta & VideoShotData
export interface VideoSequenceMeta {
// describe the whole movie
videoPrompt: string
// describe the background audio (crowd, birds, wind, sea etc..)
backgroundAudioPrompt: string
// describe the foreground audio (cars revving, footsteps, objects breaking, explosion etc)
foregroundAudioPrompt: string
// describe the main actor visible in the shot (optional)
actorPrompt: string
// describe the main actor voice (man, woman, old, young, amused, annoyed.. etc)
actorVoicePrompt: string
// describe the main actor dialogue line
actorDialoguePrompt: string
seed: number
noise: boolean // add movie noise
steps: number // between 10 and 50
fps: number // 8, 12, 24, 30, 60
resolution: string // 256, 512, 576, 720, 1080
outroTransition: VideoTransition
outroDurationMs: number
}
export interface VideoSequenceData {
// must be unique
id: string
fileName: string
// used to check compatibility
version: number
hasAssembledVideo: boolean
nbCompletedShots: number
nbTotalShots: number
progressPercent: number
completedAt: string
completed: boolean
error: string
}
export type VideoSequence = VideoSequenceMeta & VideoSequenceData
export type VideoTaskRequest = {
prompt: string
sequence: Partial<VideoSequenceMeta>
shots: Array<Partial<VideoShotMeta>>
}
export type VideoTask = VideoSequence & {
shots: VideoShot[]
} |