ai-tube / src /lib /utils /getInitialRenderedScene.ts
jbilcke-hf's picture
jbilcke-hf HF staff
working on a new API route
6ced056
raw
history blame
292 Bytes
import { ClapSegmentStatus } from "@aitube/clap"
import { RenderedScene } from "@/types/general"
export const getInitialRenderedScene = (): RenderedScene => ({
renderId: "",
status: ClapSegmentStatus.TO_GENERATE,
assetUrl: "",
alt: "",
error: "",
maskUrl: "",
segments: []
})