]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - shared/models/videos/live/live-video.model.ts
Add event doc to view endpoint
[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 {
c6c0fa6c 4 rtmpUrl: string
df1db951
C
5 rtmpsUrl: string
6
c6c0fa6c 7 streamKey: string
f443a746 8
b5b68755 9 saveReplay: boolean
bb4ba6d9 10 permanentLive: boolean
f443a746 11 latencyMode: LiveVideoLatencyMode
c6c0fa6c 12}