aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/models/videos/video-file.model.ts
blob: 04da0627ecb850105261e36a68698a59048258e5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
import { VideoConstant, VideoResolution } from '@shared/models'

export interface VideoFile {
  magnetUri: string
  resolution: VideoConstant<VideoResolution>
  size: number // Bytes
  torrentUrl: string
  torrentDownloadUrl: string
  fileUrl: string
  fileDownloadUrl: string
  fps: number
}