You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
170 lines
4.4 KiB
170 lines
4.4 KiB
import {
|
|
IpluginDetails,
|
|
IpluginInputArgs,
|
|
IpluginOutputArgs,
|
|
} from '../../../../FlowHelpers/1.0.0/interfaces/interfaces';
|
|
|
|
/* eslint no-plusplus: ["error", { "allowForLoopAfterthoughts": true }] */
|
|
const details = (): IpluginDetails => ({
|
|
name: 'Compare File Size Ratio Live',
|
|
description: `
|
|
Compare either the estimated final size or current output size to the input size and
|
|
give an error if estimated final size or current size surpasses the threshold %.
|
|
|
|
Works with 'FfmpegCommand', 'HandBrake Custom Arguments', 'Run Classic Transcode' and other flow plugins
|
|
that output a file.
|
|
|
|
Can be placed anywhere before a plugin which outputs a new file.
|
|
',
|
|
`,
|
|
style: {
|
|
borderColor: 'orange',
|
|
},
|
|
tags: '',
|
|
isStartPlugin: false,
|
|
pType: '',
|
|
requiresVersion: '2.11.01',
|
|
sidebarPosition: -1,
|
|
icon: 'faQuestion',
|
|
inputs: [
|
|
{
|
|
label: 'Enabled',
|
|
name: 'enabled',
|
|
type: 'boolean',
|
|
defaultValue: 'true',
|
|
inputUI: {
|
|
type: 'switch',
|
|
},
|
|
tooltip: `Enable or disable this plugin. For example you may want to enable it for one transcoding block and then
|
|
disable it for another block.
|
|
`,
|
|
},
|
|
{
|
|
label: 'Compare Method',
|
|
name: 'compareMethod',
|
|
type: 'string',
|
|
defaultValue: 'estimatedFinalSize',
|
|
inputUI: {
|
|
type: 'dropdown',
|
|
options: [
|
|
'estimatedFinalSize',
|
|
'currentSize',
|
|
],
|
|
displayConditions: {
|
|
logic: 'AND',
|
|
sets: [
|
|
{
|
|
logic: 'AND',
|
|
inputs: [
|
|
{
|
|
name: 'enabled',
|
|
value: 'true',
|
|
condition: '===',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
},
|
|
},
|
|
tooltip: `Specify the method to compare.
|
|
Estimated Final Size: Compare the estimated final output size to the input size.
|
|
Current Size: Compare the current output size to the input size.
|
|
`,
|
|
},
|
|
{
|
|
label: 'Threshold Size %',
|
|
name: 'thresholdPerc',
|
|
type: 'number',
|
|
defaultValue: '60',
|
|
inputUI: {
|
|
type: 'text',
|
|
displayConditions: {
|
|
logic: 'AND',
|
|
sets: [
|
|
{
|
|
logic: 'AND',
|
|
inputs: [
|
|
{
|
|
name: 'enabled',
|
|
value: 'true',
|
|
condition: '===',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
},
|
|
},
|
|
tooltip: `Enter the threshold size percentage relative to the input size.
|
|
An error will be triggered if the estimated or current size exceeds this percentage.
|
|
|
|
For example, if the input size is 100MB and the threshold is 60%, the estimated final size or current size
|
|
must not surpass 60MB else an error will be given and processing will stop.
|
|
`,
|
|
},
|
|
{
|
|
label: 'Check Delay (seconds)',
|
|
name: 'checkDelaySeconds',
|
|
type: 'number',
|
|
defaultValue: '20',
|
|
inputUI: {
|
|
type: 'text',
|
|
displayConditions: {
|
|
logic: 'AND',
|
|
sets: [
|
|
{
|
|
logic: 'AND',
|
|
inputs: [
|
|
{
|
|
name: 'enabled',
|
|
value: 'true',
|
|
condition: '===',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
},
|
|
},
|
|
tooltip: `
|
|
Specify the delay in seconds before beginning the comparison.
|
|
A larger delay gives more time for the estimated final size to stabilize.
|
|
`,
|
|
},
|
|
],
|
|
outputs: [
|
|
{
|
|
number: 1,
|
|
tooltip: 'Continue to next plugin',
|
|
},
|
|
],
|
|
});
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
const plugin = (args: IpluginInputArgs):IpluginOutputArgs => {
|
|
const lib = require('../../../../../methods/lib')();
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars,no-param-reassign
|
|
args.inputs = lib.loadDefaultValues(args.inputs, details);
|
|
|
|
const enabled = Boolean(args.inputs.enabled);
|
|
const compareMethod = String(args.inputs.compareMethod);
|
|
const thresholdPerc = Number(args.inputs.thresholdPerc);
|
|
const checkDelaySeconds = Number(args.inputs.checkDelaySeconds);
|
|
|
|
// eslint-disable-next-line no-param-reassign
|
|
args.variables.liveSizeCompare = {
|
|
enabled,
|
|
compareMethod,
|
|
thresholdPerc,
|
|
checkDelaySeconds,
|
|
};
|
|
|
|
return {
|
|
outputFileObj: args.inputFileObj,
|
|
outputNumber: 1,
|
|
variables: args.variables,
|
|
};
|
|
};
|
|
export {
|
|
details,
|
|
plugin,
|
|
};
|