diff options
Diffstat (limited to 'shared/models/plugins')
-rw-r--r-- | shared/models/plugins/index.ts | 1 | ||||
-rw-r--r-- | shared/models/plugins/plugin-transcoding-manager.model.ts | 11 |
2 files changed, 12 insertions, 0 deletions
diff --git a/shared/models/plugins/index.ts b/shared/models/plugins/index.ts index 83ed6f583..96621460a 100644 --- a/shared/models/plugins/index.ts +++ b/shared/models/plugins/index.ts | |||
@@ -11,6 +11,7 @@ export * from './plugin-package-json.model' | |||
11 | export * from './plugin-playlist-privacy-manager.model' | 11 | export * from './plugin-playlist-privacy-manager.model' |
12 | export * from './plugin-settings-manager.model' | 12 | export * from './plugin-settings-manager.model' |
13 | export * from './plugin-storage-manager.model' | 13 | export * from './plugin-storage-manager.model' |
14 | export * from './plugin-transcoding-manager.model' | ||
14 | export * from './plugin-translation.model' | 15 | export * from './plugin-translation.model' |
15 | export * from './plugin-video-category-manager.model' | 16 | export * from './plugin-video-category-manager.model' |
16 | export * from './plugin-video-language-manager.model' | 17 | export * from './plugin-video-language-manager.model' |
diff --git a/shared/models/plugins/plugin-transcoding-manager.model.ts b/shared/models/plugins/plugin-transcoding-manager.model.ts new file mode 100644 index 000000000..ff89687e9 --- /dev/null +++ b/shared/models/plugins/plugin-transcoding-manager.model.ts | |||
@@ -0,0 +1,11 @@ | |||
1 | import { EncoderOptionsBuilder } from '../videos/video-transcoding.model' | ||
2 | |||
3 | export interface PluginTranscodingManager { | ||
4 | addLiveProfile (encoder: string, profile: string, builder: EncoderOptionsBuilder): boolean | ||
5 | |||
6 | addVODProfile (encoder: string, profile: string, builder: EncoderOptionsBuilder): boolean | ||
7 | |||
8 | addLiveEncoderPriority (streamType: 'audio' | 'video', encoder: string, priority: number): void | ||
9 | |||
10 | addVODEncoderPriority (streamType: 'audio' | 'video', encoder: string, priority: number): void | ||
11 | } | ||