]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - 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
CommitLineData
f443a746
C
1import { LiveVideoLatencyMode } from './live-video-latency-mode.enum'
2
a5cf76af 3export interface LiveVideo {
961cbe42
C
4 // If owner
5 rtmpUrl?: string
6 rtmpsUrl?: string
7 streamKey?: string
f443a746 8
b5b68755 9 saveReplay: boolean
bb4ba6d9 10 permanentLive: boolean
f443a746 11 latencyMode: LiveVideoLatencyMode
c6c0fa6c 12}