Compare File Size Ratio Live

This commit is contained in:
HaveAGitGat 2024-06-12 07:47:05 +01:00
parent 6d6ff0bb88
commit 9ac675d401
14 changed files with 265 additions and 18 deletions

View file

@ -96,12 +96,20 @@ export interface IffmpegCommand {
overallOuputArguments: string[],
}
export interface IliveSizeCompare {
enabled: boolean,
compareMethod: string,
thresholdPerc: number,
checkDelaySeconds: number,
}
export interface Ivariables {
ffmpegCommand: IffmpegCommand,
flowFailed: boolean,
user: Record<string, string>,
healthCheck?: 'Success',
queueTags?: string,
liveSizeCompare?: IliveSizeCompare
}
export interface IpluginOutputArgs {