diff options
Diffstat (limited to 'shared/models/videos')
-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 | ||