aboutsummaryrefslogblamecommitdiffhomepage
path: root/shared/models/videos/video-file.model.ts
blob: 28fce0aaf2187c6ae98b0631f7a034603c2fe966 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                                                      
                                                               
                                                         

                            

                                            
 

                            
 

                         
 
             
 
                              
                      
 
                          
 
import { VideoConstant } from './video-constant.model'
import { VideoFileMetadata } from './video-file-metadata.model'
import { VideoResolution } from './video-resolution.enum'

export interface VideoFile {
  resolution: VideoConstant<VideoResolution>
  size: number // Bytes

  torrentUrl: string
  torrentDownloadUrl: string

  fileUrl: string
  fileDownloadUrl: string

  fps: number

  metadata?: VideoFileMetadata
  metadataUrl?: string

  magnetUri: string | null
}