mirror of
https://github.com/gabehf/Tdarr_Plugins.git
synced 2026-03-09 15:38:19 -07:00
Add 10 bit video filter
This commit is contained in:
parent
71ca75fa52
commit
16afcf09bf
2 changed files with 114 additions and 0 deletions
56
Community/Tdarr_Plugin_00td_filter_10_bit_video.js
Normal file
56
Community/Tdarr_Plugin_00td_filter_10_bit_video.js
Normal file
|
|
@ -0,0 +1,56 @@
|
|||
const details = () => ({
|
||||
id: 'Tdarr_Plugin_00td_filter_10_bit_video',
|
||||
Stage: 'Pre-processing',
|
||||
Name: 'Filter 10 bit video',
|
||||
Type: 'Video',
|
||||
Operation: 'Filter',
|
||||
Description: 'Allow/disallow 10 bit video to be processed.',
|
||||
Version: '1.00',
|
||||
Tags: 'filter',
|
||||
Inputs: [
|
||||
{
|
||||
name: 'process10BitVideo',
|
||||
type: 'boolean',
|
||||
defaultValue: false,
|
||||
inputUI: {
|
||||
type: 'dropdown',
|
||||
options: [
|
||||
'false',
|
||||
'true',
|
||||
],
|
||||
},
|
||||
tooltip: 'Set true to allow 10 bit video to be processed.',
|
||||
},
|
||||
],
|
||||
});
|
||||
|
||||
// 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: 'File will be processed.',
|
||||
};
|
||||
|
||||
try {
|
||||
const streams10Bit = file.ffProbeData.streams.filter((row) => row.profile === 'Main 10');
|
||||
if (inputs.process10BitVideo === false && streams10Bit.length > 0) {
|
||||
response.processFile = false;
|
||||
response.infoLog = 'File video is 10 bit but 10 bit video processing is not allowed. Skipping plugins.';
|
||||
} else if (inputs.process10BitVideo === true && streams10Bit.length > 0) {
|
||||
response.infoLog = 'File video is 10 bit and 10 bit video processing is allowed. Continuing to plugins';
|
||||
} else if (streams10Bit.length === 0) {
|
||||
response.infoLog += 'File is not 10 bit.';
|
||||
}
|
||||
} catch (err) {
|
||||
// eslint-disable-next-line no-console
|
||||
console.log(err);
|
||||
}
|
||||
|
||||
return response;
|
||||
};
|
||||
|
||||
module.exports.details = details;
|
||||
module.exports.plugin = plugin;
|
||||
Loading…
Add table
Add a link
Reference in a new issue