aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/models/videos/live/live-video.model.ts
blob: d0f57f8834aedda7a0ef2a17e513c910967c1df3 (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 {
  // If owner
  rtmpUrl?: string
  rtmpsUrl?: string
  streamKey?: string

  saveReplay: boolean
  permanentLive: boolean
  latencyMode: LiveVideoLatencyMode
}