blob: d0f57f8834aedda7a0ef2a17e513c910967c1df3 (
plain) (
tree)
|
|
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
}
|