diff options
author | Chocobozzz <me@florianbigard.com> | 2021-04-09 10:36:21 +0200 |
---|---|---|
committer | Chocobozzz <chocobozzz@cpy.re> | 2021-04-09 15:53:18 +0200 |
commit | 3e03b961b8ab897500dfea626f808c009f64e551 (patch) | |
tree | bfde6c71a4a63b77fe94536149d0b68cf02110c9 /shared | |
parent | d2351bcfd4cfed4b728df170593e0c6b66aa6762 (diff) | |
download | PeerTube-3e03b961b8ab897500dfea626f808c009f64e551.tar.gz PeerTube-3e03b961b8ab897500dfea626f808c009f64e551.tar.zst PeerTube-3e03b961b8ab897500dfea626f808c009f64e551.zip |
Add ability for plugins to specify scale filter
Diffstat (limited to 'shared')
-rw-r--r-- | shared/models/videos/video-transcoding.model.ts | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/shared/models/videos/video-transcoding.model.ts b/shared/models/videos/video-transcoding.model.ts index ffb0115dc..3f2382ce8 100644 --- a/shared/models/videos/video-transcoding.model.ts +++ b/shared/models/videos/video-transcoding.model.ts | |||
@@ -12,8 +12,11 @@ export type EncoderOptionsBuilder = (params: { | |||
12 | export interface EncoderOptions { | 12 | export interface EncoderOptions { |
13 | copy?: boolean // Copy stream? Default to false | 13 | copy?: boolean // Copy stream? Default to false |
14 | 14 | ||
15 | scaleFilter?: { | ||
16 | name: string | ||
17 | } | ||
18 | |||
15 | inputOptions?: string[] | 19 | inputOptions?: string[] |
16 | videoFilters?: string[] | ||
17 | outputOptions?: string[] | 20 | outputOptions?: string[] |
18 | } | 21 | } |
19 | 22 | ||