mirror of
https://github.com/gabehf/Tdarr_Plugins.git
synced 2026-03-10 07:50:29 -07:00
Add Tdarr_Plugin_00td_filter_break_stack_if_processed
This commit is contained in:
parent
198ce71116
commit
e17e44f290
2 changed files with 76 additions and 0 deletions
|
|
@ -0,0 +1,36 @@
|
|||
const details = () => ({
|
||||
id: 'Tdarr_Plugin_00td_filter_break_stack_if_processed',
|
||||
Stage: 'Pre-processing',
|
||||
Name: 'Filter - break out of plugin stack if processed',
|
||||
Type: 'Video',
|
||||
Operation: 'Filter',
|
||||
Description: `This plugin will break out of the plugin stack if the file has been processed
|
||||
(i.e. if a new file has been created). In general, place it before your transcode plugin
|
||||
(for example when trying to force h264 to h264 transcoding which is difficult to do with normal plugins)`,
|
||||
Version: '1.00',
|
||||
Tags: 'filter',
|
||||
Inputs: [],
|
||||
});
|
||||
|
||||
// eslint-disable-next-line no-unused-vars
|
||||
const plugin = (file, librarySettings, inputs, otherArguments) => {
|
||||
const lib = require('../methods/lib')();
|
||||
// eslint-disable-next-line no-unused-vars,no-param-reassign
|
||||
inputs = lib.loadDefaultValues(inputs, details);
|
||||
const response = {
|
||||
processFile: true,
|
||||
infoLog: '',
|
||||
};
|
||||
|
||||
if (file.file !== otherArguments.originalLibraryFile.file) {
|
||||
response.processFile = false;
|
||||
response.infoLog = 'File has been processed, breaking out of plugin stack.';
|
||||
} else {
|
||||
response.infoLog = 'File has not been processed yet. Continuing to next plugin.';
|
||||
}
|
||||
|
||||
return response;
|
||||
};
|
||||
|
||||
module.exports.details = details;
|
||||
module.exports.plugin = plugin;
|
||||
Loading…
Add table
Add a link
Reference in a new issue