1
0
Fork 0
peertube/shared/models/plugins/server/managers/plugin-transcoding-manager.model.ts

14 lines
547 B
TypeScript
Raw Normal View History

2021-11-18 08:35:08 -05:00
import { EncoderOptionsBuilder } from '../../../videos/transcoding'
export interface PluginTranscodingManager {
addLiveProfile (encoder: string, profile: string, builder: EncoderOptionsBuilder): boolean
addVODProfile (encoder: string, profile: string, builder: EncoderOptionsBuilder): boolean
addLiveEncoderPriority (streamType: 'audio' | 'video', encoder: string, priority: number): void
addVODEncoderPriority (streamType: 'audio' | 'video', encoder: string, priority: number): void
2021-01-29 04:23:33 -05:00
2021-01-29 07:57:17 -05:00
removeAllProfilesAndEncoderPriorities(): void
}