]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - shared/models/videos/video-streaming-playlist.model.ts
More specific message when signup is not allowed
[github/Chocobozzz/PeerTube.git] / shared / models / videos / video-streaming-playlist.model.ts
1 import { VideoStreamingPlaylistType } from './video-streaming-playlist.type'
2 import { VideoFile } from './file'
3
4 export interface VideoStreamingPlaylist {
5 id: number
6 type: VideoStreamingPlaylistType
7 playlistUrl: string
8 segmentsSha256Url: string
9
10 redundancies: {
11 baseUrl: string
12 }[]
13
14 files: VideoFile[]
15 }