PeerTube_original/shared/models/videos/live/live-video.model.ts
2022-03-09 09:23:10 +01:00

13 lines
244 B
TypeScript

import { LiveVideoLatencyMode } from './live-video-latency-mode.enum'
export interface LiveVideo {
rtmpUrl: string
rtmpsUrl: string
streamKey: string
saveReplay: boolean
permanentLive: boolean
latencyMode: LiveVideoLatencyMode
}