video-streaming-playlist.model.ts 350 B

123456789101112131415
  1. import { VideoStreamingPlaylistType } from './video-streaming-playlist.type'
  2. import { VideoFile } from '@shared/models/videos/video-file.model'
  3. export class VideoStreamingPlaylist {
  4. id: number
  5. type: VideoStreamingPlaylistType
  6. playlistUrl: string
  7. segmentsSha256Url: string
  8. redundancies: {
  9. baseUrl: string
  10. }[]
  11. files: VideoFile[]
  12. }