]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - shared/models/videos/live/live-video.model.ts
Fix getting live by anonymous user
[github/Chocobozzz/PeerTube.git] / shared / models / videos / live / live-video.model.ts
1 import { LiveVideoLatencyMode } from './live-video-latency-mode.enum'
2
3 export interface LiveVideo {
4 // If owner
5 rtmpUrl?: string
6 rtmpsUrl?: string
7 streamKey?: string
8
9 saveReplay: boolean
10 permanentLive: boolean
11 latencyMode: LiveVideoLatencyMode
12 }