2021-11-18 08:35:08 -05:00
|
|
|
import { VideoResolution } from '../file/video-resolution.enum'
|
2021-01-28 09:52:44 -05:00
|
|
|
|
|
|
|
// Types used by plugins and ffmpeg-utils
|
|
|
|
|
2021-08-06 07:35:25 -04:00
|
|
|
export type EncoderOptionsBuilderParams = {
|
2021-01-28 09:52:44 -05:00
|
|
|
input: string
|
2021-08-06 07:35:25 -04:00
|
|
|
|
2021-01-28 09:52:44 -05:00
|
|
|
resolution: VideoResolution
|
2021-08-06 07:35:25 -04:00
|
|
|
|
|
|
|
// Could be null for "merge audio" transcoding
|
2021-01-28 09:52:44 -05:00
|
|
|
fps?: number
|
2021-08-06 07:35:25 -04:00
|
|
|
|
|
|
|
// Could be undefined if we could not get input bitrate (some RTMP streams for example)
|
|
|
|
inputBitrate: number
|
|
|
|
inputRatio: number
|
|
|
|
|
|
|
|
// For lives
|
2021-01-28 09:52:44 -05:00
|
|
|
streamNum?: number
|
2021-08-06 07:35:25 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
export type EncoderOptionsBuilder = (params: EncoderOptionsBuilderParams) => Promise<EncoderOptions> | EncoderOptions
|
2021-01-28 09:52:44 -05:00
|
|
|
|
|
|
|
export interface EncoderOptions {
|
|
|
|
copy?: boolean // Copy stream? Default to false
|
|
|
|
|
2021-04-09 04:36:21 -04:00
|
|
|
scaleFilter?: {
|
|
|
|
name: string
|
|
|
|
}
|
|
|
|
|
2021-04-03 17:51:37 -04:00
|
|
|
inputOptions?: string[]
|
|
|
|
outputOptions?: string[]
|
2021-01-28 09:52:44 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// 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[]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|