PeerTube/shared/models/videos/live/live-video.model.ts

13 lines
260 B
TypeScript
Raw Normal View History

2022-03-04 13:40:02 +01:00
import { LiveVideoLatencyMode } from './live-video-latency-mode.enum'
export interface LiveVideo {
2022-04-22 09:50:20 +02:00
// If owner
rtmpUrl?: string
rtmpsUrl?: string
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
}