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.
68 lines
2.5 KiB
68 lines
2.5 KiB
"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: 'Set Flow Variable',
|
|
description: "Set a Flow Variable to whatever you like. This can be used with the 'Check Flow Variable'\n plugin for complex flows with loops in them where you're wanting to keep track \n of where you are in the flow. For example, when attempting to transcode with NVENC, then QSV, then CPU.\n ",
|
|
style: {
|
|
borderColor: 'green',
|
|
},
|
|
tags: '',
|
|
isStartPlugin: false,
|
|
pType: '',
|
|
requiresVersion: '2.11.01',
|
|
sidebarPosition: 1,
|
|
icon: '',
|
|
inputs: [
|
|
{
|
|
label: 'Variable',
|
|
name: 'variable',
|
|
type: 'string',
|
|
defaultValue: '',
|
|
inputUI: {
|
|
type: 'text',
|
|
},
|
|
tooltip: "Variable to set.\n \n \\nExample\\n\n transcodeStage\n \n \\n\n You can then check this in the 'Check Flow Variable' plugin\n {{{args.variables.user.transcodeStage}}}\n ",
|
|
},
|
|
{
|
|
label: 'Value',
|
|
name: 'value',
|
|
type: 'string',
|
|
defaultValue: '',
|
|
inputUI: {
|
|
type: 'text',
|
|
},
|
|
tooltip: "Value to set.\n \n \\nExample\\n\n 1\n \n \\nExample\\n\n nvenc\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 variable = String(args.inputs.variable).trim();
|
|
var value = String(args.inputs.value);
|
|
if (!args.variables.user) {
|
|
// eslint-disable-next-line no-param-reassign
|
|
args.variables.user = {};
|
|
}
|
|
args.jobLog("Setting variable ".concat(variable, " to ").concat(value));
|
|
// eslint-disable-next-line no-param-reassign
|
|
args.variables.user[variable] = value;
|
|
return {
|
|
outputFileObj: args.inputFileObj,
|
|
outputNumber: 1,
|
|
variables: args.variables,
|
|
};
|
|
};
|
|
exports.plugin = plugin;
|