mirror of https://github.com/Chocobozzz/PeerTube
				
				
				
			
		
			
				
	
	
		
			24 lines
		
	
	
		
			487 B
		
	
	
	
		
			TypeScript
		
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			487 B
		
	
	
	
		
			TypeScript
		
	
	
| import { VideoConstant } from '../video-constant.model'
 | |
| import { VideoFileMetadata } from './video-file-metadata.model'
 | |
| import { VideoResolution } from './video-resolution.enum'
 | |
| 
 | |
| export interface VideoFile {
 | |
|   id: number
 | |
| 
 | |
|   resolution: VideoConstant<VideoResolution>
 | |
|   size: number // Bytes
 | |
| 
 | |
|   torrentUrl: string
 | |
|   torrentDownloadUrl: string
 | |
| 
 | |
|   fileUrl: string
 | |
|   fileDownloadUrl: string
 | |
| 
 | |
|   fps: number
 | |
| 
 | |
|   metadata?: VideoFileMetadata
 | |
|   metadataUrl?: string
 | |
| 
 | |
|   magnetUri: string | null
 | |
| }
 |