aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/models/videos/video-file.model.ts
blob: cbef05ac07634ae02a586c156e0a971c8c03cedc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import { VideoConstant, VideoFileMetadata, 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
  metadata?: VideoFileMetadata
  metadataUrl?: string
}