-
Notifications
You must be signed in to change notification settings - Fork 175
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #663 from HaveAGitGat/compare_live
Compare File Size Ratio Live
- Loading branch information
Showing
27 changed files
with
479 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
138 changes: 138 additions & 0 deletions
138
FlowPlugins/CommunityFlowPlugins/file/compareFileSizeRatioLive/1.0.0/index.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,138 @@ | ||
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.plugin = exports.details = void 0; | ||
/* eslint no-plusplus: ["error", { "allowForLoopAfterthoughts": true }] */ | ||
var details = function () { return ({ | ||
name: 'Compare File Size Ratio Live', | ||
description: "\n Compare either the estimated final size or current output size to the input size and \n give an error if estimated final size or current size surpasses the threshold %.\n\n Works with 'FfmpegCommand', 'HandBrake Custom Arguments', 'Run Classic Transcode' and other flow plugins \n that output a file.\n\n Can be placed anywhere before a plugin which outputs a new file.\n ',\n ", | ||
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\n disable it for another block.\n ", | ||
}, | ||
{ | ||
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.\n Estimated Final Size: Compare the estimated final output size to the input size.\n Current Size: Compare the current output size to the input size.\n ", | ||
}, | ||
{ | ||
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. \n An error will be triggered if the estimated or current size exceeds this percentage.\n\n For example, if the input size is 100MB and the threshold is 60%, the estimated final size or current size\n must not surpass 60MB else an error will be given and processing will stop.\n ", | ||
}, | ||
{ | ||
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: "\n Specify the delay in seconds before beginning the comparison.\n A larger delay gives more time for the estimated final size to stabilize.\n ", | ||
}, | ||
], | ||
outputs: [ | ||
{ | ||
number: 1, | ||
tooltip: 'Continue to next plugin', | ||
}, | ||
], | ||
}); }; | ||
exports.details = details; | ||
// eslint-disable-next-line @typescript-eslint/no-unused-vars | ||
var plugin = function (args) { | ||
var lib = require('../../../../../methods/lib')(); | ||
// eslint-disable-next-line @typescript-eslint/no-unused-vars,no-param-reassign | ||
args.inputs = lib.loadDefaultValues(args.inputs, details); | ||
var enabled = Boolean(args.inputs.enabled); | ||
var compareMethod = String(args.inputs.compareMethod); | ||
var thresholdPerc = Number(args.inputs.thresholdPerc); | ||
var checkDelaySeconds = Number(args.inputs.checkDelaySeconds); | ||
// eslint-disable-next-line no-param-reassign | ||
args.variables.liveSizeCompare = { | ||
enabled: enabled, | ||
compareMethod: compareMethod, | ||
thresholdPerc: thresholdPerc, | ||
checkDelaySeconds: checkDelaySeconds, | ||
}; | ||
return { | ||
outputFileObj: args.inputFileObj, | ||
outputNumber: 1, | ||
variables: args.variables, | ||
}; | ||
}; | ||
exports.plugin = plugin; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.