aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/models/videos/live/live-video.model.ts
blob: 2d31699413077eeadc2dc0996d9a23d8cbb2a1c2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
import { LiveVideoLatencyMode } from './live-video-latency-mode.enum'

export interface LiveVideo {
  rtmpUrl: string
  rtmpsUrl: string

  streamKey: string

  saveReplay: boolean
  permanentLive: boolean
  latencyMode: LiveVideoLatencyMode
}