2019-01-29 08:37:25 +01:00
|
|
|
import { VideoStreamingPlaylistType } from './video-streaming-playlist.type'
|
2021-11-18 14:35:08 +01:00
|
|
|
import { VideoFile } from './file'
|
2019-01-29 08:37:25 +01:00
|
|
|
|
2020-08-27 10:08:54 +02:00
|
|
|
export interface VideoStreamingPlaylist {
|
2019-01-29 08:37:25 +01:00
|
|
|
id: number
|
|
|
|
type: VideoStreamingPlaylistType
|
|
|
|
playlistUrl: string
|
|
|
|
segmentsSha256Url: string
|
|
|
|
|
|
|
|
redundancies: {
|
|
|
|
baseUrl: string
|
|
|
|
}[]
|
2019-11-15 15:06:03 +01:00
|
|
|
|
|
|
|
files: VideoFile[]
|
2019-01-29 08:37:25 +01:00
|
|
|
}
|