diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2017-10-09 11:06:13 +0200 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2017-10-09 11:17:36 +0200 |
commit | 14d3270f363245d2c83fcc2ac109e39743b5627e (patch) | |
tree | 22a1d40675d372d53c35a4d7adf1fc1b4ceb1799 /server/models/video/video-interface.ts | |
parent | aa8b6df4a51c82eb91e6fd71a090b2128098af6b (diff) | |
download | PeerTube-14d3270f363245d2c83fcc2ac109e39743b5627e.tar.gz PeerTube-14d3270f363245d2c83fcc2ac109e39743b5627e.tar.zst PeerTube-14d3270f363245d2c83fcc2ac109e39743b5627e.zip |
Change how we handle resolution
It was an enum before, now we just use video height
Diffstat (limited to 'server/models/video/video-interface.ts')
-rw-r--r-- | server/models/video/video-interface.ts | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/server/models/video/video-interface.ts b/server/models/video/video-interface.ts index 340426f45..6a3db4f3e 100644 --- a/server/models/video/video-interface.ts +++ b/server/models/video/video-interface.ts | |||
@@ -35,7 +35,6 @@ export namespace VideoMethods { | |||
35 | 35 | ||
36 | // Return thumbnail name | 36 | // Return thumbnail name |
37 | export type GenerateThumbnailFromData = (video: VideoInstance, thumbnailData: string) => Promise<string> | 37 | export type GenerateThumbnailFromData = (video: VideoInstance, thumbnailData: string) => Promise<string> |
38 | export type GetDurationFromFile = (videoPath: string) => Promise<number> | ||
39 | 38 | ||
40 | export type List = () => Promise<VideoInstance[]> | 39 | export type List = () => Promise<VideoInstance[]> |
41 | export type ListOwnedAndPopulateAuthorAndTags = () => Promise<VideoInstance[]> | 40 | export type ListOwnedAndPopulateAuthorAndTags = () => Promise<VideoInstance[]> |
@@ -65,7 +64,6 @@ export namespace VideoMethods { | |||
65 | 64 | ||
66 | export interface VideoClass { | 65 | export interface VideoClass { |
67 | generateThumbnailFromData: VideoMethods.GenerateThumbnailFromData | 66 | generateThumbnailFromData: VideoMethods.GenerateThumbnailFromData |
68 | getDurationFromFile: VideoMethods.GetDurationFromFile | ||
69 | list: VideoMethods.List | 67 | list: VideoMethods.List |
70 | listForApi: VideoMethods.ListForApi | 68 | listForApi: VideoMethods.ListForApi |
71 | listOwnedAndPopulateAuthorAndTags: VideoMethods.ListOwnedAndPopulateAuthorAndTags | 69 | listOwnedAndPopulateAuthorAndTags: VideoMethods.ListOwnedAndPopulateAuthorAndTags |