2022-03-04 06:40:02 -06:00
|
|
|
import { LiveVideoLatencyMode } from './live-video-latency-mode.enum'
|
|
|
|
|
2020-09-25 03:04:21 -05:00
|
|
|
export interface LiveVideo {
|
2022-04-22 02:50:20 -05:00
|
|
|
// If owner
|
|
|
|
rtmpUrl?: string
|
|
|
|
rtmpsUrl?: string
|
|
|
|
streamKey?: string
|
2022-03-04 06:40:02 -06:00
|
|
|
|
2020-10-26 10:44:23 -05:00
|
|
|
saveReplay: boolean
|
2020-12-03 07:10:54 -06:00
|
|
|
permanentLive: boolean
|
2022-03-04 06:40:02 -06:00
|
|
|
latencyMode: LiveVideoLatencyMode
|
2020-09-17 02:20:52 -05:00
|
|
|
}
|