diff options
Diffstat (limited to 'shared/models/videos/live/live-video.model.ts')
-rw-r--r-- | shared/models/videos/live/live-video.model.ts | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/shared/models/videos/live/live-video.model.ts b/shared/models/videos/live/live-video.model.ts deleted file mode 100644 index fd8454123..000000000 --- a/shared/models/videos/live/live-video.model.ts +++ /dev/null | |||
@@ -1,14 +0,0 @@ | |||
1 | import { VideoPrivacy } from '../video-privacy.enum' | ||
2 | import { LiveVideoLatencyMode } from './live-video-latency-mode.enum' | ||
3 | |||
4 | export interface LiveVideo { | ||
5 | // If owner | ||
6 | rtmpUrl?: string | ||
7 | rtmpsUrl?: string | ||
8 | streamKey?: string | ||
9 | |||
10 | saveReplay: boolean | ||
11 | replaySettings?: { privacy: VideoPrivacy } | ||
12 | permanentLive: boolean | ||
13 | latencyMode: LiveVideoLatencyMode | ||
14 | } | ||