2019-01-29 02:37:25 -05:00
|
|
|
import { VideoStreamingPlaylistType } from './video-streaming-playlist.type'
|
2019-11-15 09:06:03 -05:00
|
|
|
import { VideoFile } from '@shared/models/videos/video-file.model'
|
2019-01-29 02:37:25 -05:00
|
|
|
|
|
|
|
export class VideoStreamingPlaylist {
|
|
|
|
id: number
|
|
|
|
type: VideoStreamingPlaylistType
|
|
|
|
playlistUrl: string
|
|
|
|
segmentsSha256Url: string
|
|
|
|
|
|
|
|
redundancies: {
|
|
|
|
baseUrl: string
|
|
|
|
}[]
|
2019-11-15 09:06:03 -05:00
|
|
|
|
|
|
|
files: VideoFile[]
|
2019-01-29 02:37:25 -05:00
|
|
|
}
|