aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/models/videos/video-file.model.ts
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2021-11-18 14:35:08 +0100
committerChocobozzz <me@florianbigard.com>2021-11-18 15:20:57 +0100
commitad5db1044c8599eaaaa2a578b350777ae996b068 (patch)
tree3e003cccf021152405d49b21c6c91b703c8ae96c /shared/models/videos/video-file.model.ts
parentb46cf4b920984492df598c1b61179acfc7f6f22e (diff)
downloadPeerTube-ad5db1044c8599eaaaa2a578b350777ae996b068.tar.gz
PeerTube-ad5db1044c8599eaaaa2a578b350777ae996b068.tar.zst
PeerTube-ad5db1044c8599eaaaa2a578b350777ae996b068.zip
Add ability to run transcoding jobs
Diffstat (limited to 'shared/models/videos/video-file.model.ts')
-rw-r--r--shared/models/videos/video-file.model.ts21
1 files changed, 0 insertions, 21 deletions
diff --git a/shared/models/videos/video-file.model.ts b/shared/models/videos/video-file.model.ts
deleted file mode 100644
index 28fce0aaf..000000000
--- a/shared/models/videos/video-file.model.ts
+++ /dev/null
@@ -1,21 +0,0 @@
1import { VideoConstant } from './video-constant.model'
2import { VideoFileMetadata } from './video-file-metadata.model'
3import { VideoResolution } from './video-resolution.enum'
4
5export interface VideoFile {
6 resolution: VideoConstant<VideoResolution>
7 size: number // Bytes
8
9 torrentUrl: string
10 torrentDownloadUrl: string
11
12 fileUrl: string
13 fileDownloadUrl: string
14
15 fps: number
16
17 metadata?: VideoFileMetadata
18 metadataUrl?: string
19
20 magnetUri: string | null
21}