mirror of
https://github.com/gabehf/Tdarr_Plugins.git
synced 2026-03-09 15:38:19 -07:00
1) New plugin that uses CPU to convert to H265. 2) Change to FFMPEG NVidia plugin to specifiy bitrate cutoff. 3) Fix random infolog "2" in CleanTitle 4) Update descriptive audio check in CleanAudio and CleanSubs to look for "sdh" 5) Correct OrderStreams mentioning that "Audio not first" when audio should be second.
70 lines
No EOL
1.9 KiB
JavaScript
70 lines
No EOL
1.9 KiB
JavaScript
function details() {
|
|
return {
|
|
id: "Tdarr_Plugin_MC93_Migz2CleanTitle",
|
|
Stage: "Pre-processing",
|
|
Name: "Migz-Clean title metadata",
|
|
Type: "Video",
|
|
Operation: "Clean",
|
|
Description: `[TESTING]This plugin removes video title metadata if it exists. \n\n`,
|
|
Version: "1.10",
|
|
Link: "https://github.com/HaveAGitGat/Tdarr_Plugins/blob/master/Community/Tdarr_Plugin_MC93_Migz2CleanTitle.js",
|
|
Tags:'pre-processing,ffmpeg,video only',
|
|
}
|
|
}
|
|
|
|
function plugin(file) {
|
|
var response = {
|
|
processFile : false,
|
|
preset : '',
|
|
container: '.' + file.container,
|
|
handBrakeMode : false,
|
|
FFmpegMode : true,
|
|
reQueueAfter : false,
|
|
infoLog : '',
|
|
|
|
}
|
|
|
|
var ffmpegCommandInsert = ''
|
|
var videoIdx = 0
|
|
var convert = false
|
|
|
|
if (file.fileMedium !== "video") {
|
|
console.log("File is not video")
|
|
response.infoLog += "☒File is not video \n"
|
|
response.processFile = false;
|
|
return response
|
|
}
|
|
|
|
try {
|
|
if (typeof file.meta.Title != 'undefined' ){
|
|
ffmpegCommandInsert += ` -metadata title="" `
|
|
response.infoLog += "1"
|
|
convert = true
|
|
}
|
|
} catch (err) { }
|
|
|
|
for (var i = 0; i < file.ffProbeData.streams.length; i++) {
|
|
if (file.ffProbeData.streams[i].codec_type.toLowerCase() == "video") {
|
|
try {
|
|
if (typeof file.ffProbeData.streams[i].tags.title != 'undefined') {
|
|
ffmpegCommandInsert += ` -metadata:s:v:${videoIdx} title="" `
|
|
convert = true
|
|
}
|
|
} catch (err) { }
|
|
videoIdx++
|
|
}
|
|
}
|
|
|
|
if(convert == true){
|
|
response.infoLog += "☒File has title metadata \n"
|
|
response.preset = `,${ffmpegCommandInsert} -c copy`
|
|
response.reQueueAfter = true;
|
|
response.processFile = true;
|
|
}else{
|
|
response.infoLog += "☑File has no title metadata \n"
|
|
}
|
|
return response
|
|
}
|
|
|
|
module.exports.details = details;
|
|
module.exports.plugin = plugin; |