]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - video-streaming-playlist.model.ts
11919a4eec794b8a545d0d463a965e3c391a06e9
[github/Chocobozzz/PeerTube.git] / 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 }