PeerTube/shared/models/plugins/server/managers/plugin-transcoding-manager....

14 lines
559 B
TypeScript
Raw Normal View History

2021-05-11 05:04:47 -05:00
import { EncoderOptionsBuilder } from '../../../videos/video-transcoding.model'
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 03:23:33 -06:00
2021-01-29 06:57:17 -06:00
removeAllProfilesAndEncoderPriorities(): void
}