diff options
author | Théo Le Calvar <tlc@kher.nl> | 2021-04-03 18:48:14 +0200 |
---|---|---|
committer | Chocobozzz <chocobozzz@cpy.re> | 2021-04-09 15:53:18 +0200 |
commit | 5fb7cfbac50e2c55f04182e40bc6f84e5dd4a4da (patch) | |
tree | 8a253611577988fb71527477ae138be7eaf49c6b /shared/models/videos/video-transcoding.model.ts | |
parent | d2466f0ac9c9877df10f62b7ac20bc3253a2a84a (diff) | |
download | PeerTube-5fb7cfbac50e2c55f04182e40bc6f84e5dd4a4da.tar.gz PeerTube-5fb7cfbac50e2c55f04182e40bc6f84e5dd4a4da.tar.zst PeerTube-5fb7cfbac50e2c55f04182e40bc6f84e5dd4a4da.zip |
add support for inputOptions in trancode plugins
Diffstat (limited to 'shared/models/videos/video-transcoding.model.ts')
-rw-r--r-- | shared/models/videos/video-transcoding.model.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/shared/models/videos/video-transcoding.model.ts b/shared/models/videos/video-transcoding.model.ts index 06b555c16..52b468a96 100644 --- a/shared/models/videos/video-transcoding.model.ts +++ b/shared/models/videos/video-transcoding.model.ts | |||
@@ -12,6 +12,7 @@ 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 | inputOptions: string[] | ||
15 | outputOptions: string[] | 16 | outputOptions: string[] |
16 | } | 17 | } |
17 | 18 | ||