2021-01-28 09:52:44 -05:00
|
|
|
import { VideoResolution } from './video-resolution.enum'
|
|
|
|
|
|
|
|
// Types used by plugins and ffmpeg-utils
|
|
|
|
|
|
|
|
export type EncoderOptionsBuilder = (params: {
|
|
|
|
input: string
|
|
|
|
resolution: VideoResolution
|
|
|
|
fps?: number
|
|
|
|
streamNum?: number
|
|
|
|
}) => Promise<EncoderOptions> | EncoderOptions
|
|
|
|
|
|
|
|
export interface EncoderOptions {
|
|
|
|
copy?: boolean // Copy stream? Default to false
|
|
|
|
|
2021-04-03 12:48:14 -04:00
|
|
|
inputOptions: string[]
|
2021-01-28 09:52:44 -05:00
|
|
|
outputOptions: string[]
|
|
|
|
}
|
|
|
|
|
|
|
|
// All our encoders
|
|
|
|
|
|
|
|
export interface EncoderProfile <T> {
|
|
|
|
[ profile: string ]: T
|
|
|
|
|
|
|
|
default: T
|
|
|
|
}
|
|
|
|
|
|
|
|
export type AvailableEncoders = {
|
|
|
|
available: {
|
|
|
|
live: {
|
|
|
|
[ encoder: string ]: EncoderProfile<EncoderOptionsBuilder>
|
|
|
|
}
|
|
|
|
|
|
|
|
vod: {
|
|
|
|
[ encoder: string ]: EncoderProfile<EncoderOptionsBuilder>
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
encodersToTry: {
|
|
|
|
vod: {
|
|
|
|
video: string[]
|
|
|
|
audio: string[]
|
|
|
|
}
|
|
|
|
|
|
|
|
live: {
|
|
|
|
video: string[]
|
|
|
|
audio: string[]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|