1
0
Fork 0
peertube/shared/models/videos/live/live-video.model.ts
2022-04-22 09:50:20 +02:00

12 lines
260 B
TypeScript

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
}