aboutsummaryrefslogblamecommitdiffhomepage
path: root/shared/models/videos/studio/video-studio-create-edit.model.ts
blob: 001d65c900f2261a414ca39d4b77541166352923 (plain) (tree)









































                                           
export interface VideoStudioCreateEdition {
  tasks: VideoStudioTask[]
}

export type VideoStudioTask =
  VideoStudioTaskCut |
  VideoStudioTaskIntro |
  VideoStudioTaskOutro |
  VideoStudioTaskWatermark

export interface VideoStudioTaskCut {
  name: 'cut'

  options: {
    start?: number
    end?: number
  }
}

export interface VideoStudioTaskIntro {
  name: 'add-intro'

  options: {
    file: Blob | string
  }
}

export interface VideoStudioTaskOutro {
  name: 'add-outro'

  options: {
    file: Blob | string
  }
}

export interface VideoStudioTaskWatermark {
  name: 'add-watermark'

  options: {
    file: Blob | string
  }
}