]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - shared/models/videos/video-file.model.ts
Update hls.js
[github/Chocobozzz/PeerTube.git] / shared / models / videos / video-file.model.ts
1 import { VideoConstant, VideoResolution } from '@shared/models'
2
3 export interface VideoFile {
4 magnetUri: string
5 resolution: VideoConstant<VideoResolution>
6 size: number // Bytes
7 torrentUrl: string
8 torrentDownloadUrl: string
9 fileUrl: string
10 fileDownloadUrl: string
11 fps: number
12 }