d7a25329f9
In favour of HLS
15 lines
350 B
TypeScript
15 lines
350 B
TypeScript
import { VideoStreamingPlaylistType } from './video-streaming-playlist.type'
|
|
import { VideoFile } from '@shared/models/videos/video-file.model'
|
|
|
|
export class VideoStreamingPlaylist {
|
|
id: number
|
|
type: VideoStreamingPlaylistType
|
|
playlistUrl: string
|
|
segmentsSha256Url: string
|
|
|
|
redundancies: {
|
|
baseUrl: string
|
|
}[]
|
|
|
|
files: VideoFile[]
|
|
}
|