]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - shared/models/videos/live/live-video-session.model.ts
Support studio transcoding in peertube runner
[github/Chocobozzz/PeerTube.git] / shared / models / videos / live / live-video-session.model.ts
1 import { VideoPrivacy } from '../video-privacy.enum'
2 import { LiveVideoError } from './live-video-error.enum'
3
4 export interface LiveVideoSession {
5 id: number
6
7 startDate: string
8 endDate: string
9
10 error: LiveVideoError
11
12 saveReplay: boolean
13 endingProcessed: boolean
14
15 replaySettings?: { privacy: VideoPrivacy }
16
17 replayVideo: {
18 id: number
19 uuid: string
20 shortUUID: string
21 }
22 }