This commit is contained in:
HaveAGitGat 2020-05-15 01:26:35 +01:00
parent d28272f6d4
commit 9c8ac98728
60 changed files with 5481 additions and 5980 deletions

View file

@ -1,86 +1,62 @@
function details() {
return {
id: "Tdarr_Plugin_x7ac_Remove_Closed_Captions",
Stage: "Pre-processing",
Name: "Remove closed captions",
Type: "Video",
Operation: "Remux",
Description: "[Contains built-in filter] If detected, closed captions (XDS,608,708) will be removed.",
Description:
"[Contains built-in filter] If detected, closed captions (XDS,608,708) will be removed.",
Version: "1.00",
Link: "https://github.com/HaveAGitGat/Tdarr_Plugins/blob/master/Community/Tdarr_Plugin_x7ac_Remove_Closed_Captions.js",
Tags:'pre-processing,ffmpeg,subtitle only',
}
Link:
"https://github.com/HaveAGitGat/Tdarr_Plugins/blob/master/Community/Tdarr_Plugin_x7ac_Remove_Closed_Captions.js",
Tags: "pre-processing,ffmpeg,subtitle only",
};
}
function plugin(file) {
//Must return this object
var response = {
processFile: false,
preset: "",
container: ".mp4",
handBrakeMode: false,
FFmpegMode: false,
reQueueAfter: true,
infoLog: "",
};
processFile : false,
preset : '',
container : '.mp4',
handBrakeMode : false,
FFmpegMode : false,
reQueueAfter : true,
infoLog : '',
}
if (file.fileMedium !== "video") {
console.log("File is not video");
console.log("File is not video")
response.infoLog += "☒File is not video \n"
response.infoLog += "☒File is not video \n";
response.processFile = false;
return response
} else {
return response;
} else {
if (file.hasClosedCaptions === true) {
response = {
processFile: true,
preset: ',-map 0 -codec copy -bsf:v "filter_units=remove_types=6"',
container: "." + file.container,
handBrakeMode: false,
FFmpegMode: true,
reQueueAfter: true,
infoLog: "☒This file has closed captions \n",
};
if(file.hasClosedCaptions === true){
response = {
processFile : true,
preset : ',-map 0 -codec copy -bsf:v "filter_units=remove_types=6"',
container : '.' + file.container ,
handBrakeMode : false,
FFmpegMode : true,
reQueueAfter : true,
infoLog : '☒This file has closed captions \n',
}
return response
}else{
response.infoLog += "☑Closed captions have not been detected on this file \n"
return response;
} else {
response.infoLog +=
"☑Closed captions have not been detected on this file \n";
response.processFile = false;
return response
return response;
}
}
}
module.exports.details = details;
module.exports.plugin = plugin;