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.
66 lines
1.7 KiB
66 lines
1.7 KiB
/* eslint-disable */
|
|
// tdarrSkipTest
|
|
const details = () => {
|
|
return {
|
|
id: "Tdarr_Plugin_nc7x_Drawmonster_No_Title_Meta",
|
|
Stage: "Pre-processing",
|
|
Name: "Drawmonster No title meta data ",
|
|
Type: "Video",
|
|
Operation: "Transcode",
|
|
Description: `[Contains built-in filter] This plugin removes metadata (if a title exists). The output container is the same as the original. \n\n
|
|
`,
|
|
Version: "1.00",
|
|
Tags: "pre-processing,ffmpeg",
|
|
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);
|
|
//Must return this object
|
|
|
|
var response = {
|
|
processFile: false,
|
|
preset: "",
|
|
container: ".mp4",
|
|
handBrakeMode: false,
|
|
FFmpegMode: false,
|
|
reQueueAfter: false,
|
|
infoLog: "",
|
|
};
|
|
|
|
response.container = "." + file.container;
|
|
response.FFmpegMode = true;
|
|
|
|
if (file.fileMedium !== "video") {
|
|
console.log("File is not video");
|
|
|
|
response.infoLog += "☒File is not video \n";
|
|
response.processFile = false;
|
|
|
|
return response;
|
|
} else {
|
|
// var jsonString = JSON.stringify(file)
|
|
|
|
if (file.meta.Title != undefined) {
|
|
response.infoLog += "☒File has title metadata \n";
|
|
response.preset = ",-map_metadata -1 -map 0 -c copy";
|
|
response.reQueueAfter = true;
|
|
response.processFile = true;
|
|
return response;
|
|
} else {
|
|
response.infoLog += "☑File has no title metadata \n";
|
|
}
|
|
|
|
response.infoLog += "☑File meets conditions! \n";
|
|
return response;
|
|
}
|
|
}
|
|
|
|
module.exports.details = details;
|
|
module.exports.plugin = plugin;
|