2022-03-04 13:40:02 +01:00
|
|
|
import { LiveVideoLatencyMode } from './live-video-latency-mode.enum'
|
|
|
|
|
2020-09-25 10:04:21 +02:00
|
|
|
export interface LiveVideo {
|
2020-09-17 09:20:52 +02:00
|
|
|
rtmpUrl: string
|
2021-11-05 11:36:03 +01:00
|
|
|
rtmpsUrl: string
|
|
|
|
|
2020-09-17 09:20:52 +02:00
|
|
|
streamKey: string
|
2022-03-04 13:40:02 +01:00
|
|
|
|
2020-10-26 16:44:23 +01:00
|
|
|
saveReplay: boolean
|
2020-12-03 14:10:54 +01:00
|
|
|
permanentLive: boolean
|
2022-03-04 13:40:02 +01:00
|
|
|
latencyMode: LiveVideoLatencyMode
|
2020-09-17 09:20:52 +02:00
|
|
|
}
|