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

13 lines
244 B
TypeScript
Raw Normal View History

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