1
0
Fork 0
peertube/shared/models/videos/video-streaming-playlist.model.ts

16 lines
334 B
TypeScript
Raw Normal View History

2019-01-29 02:37:25 -05:00
import { VideoStreamingPlaylistType } from './video-streaming-playlist.type'
import { VideoFile } from './video-file.model'
2019-01-29 02:37:25 -05:00
2020-08-27 04:08:54 -04:00
export interface VideoStreamingPlaylist {
2019-01-29 02:37:25 -05:00
id: number
type: VideoStreamingPlaylistType
playlistUrl: string
segmentsSha256Url: string
redundancies: {
baseUrl: string
}[]
files: VideoFile[]
2019-01-29 02:37:25 -05:00
}