From c7e00f5b5d836931d1dca162287dedcc2e68b279 Mon Sep 17 00:00:00 2001 From: Luis Garcia Date: Sat, 19 Oct 2019 12:38:37 -0600 Subject: [PATCH] Upload initial version for Reorder_Streams Signed-off-by: Luis Garcia --- .../Tdarr_Plugin_lmg1_Reorder_Streams.js | 69 +++++++++++++++++++ 1 file changed, 69 insertions(+) create mode 100644 Community/Tdarr_Plugin_lmg1_Reorder_Streams.js diff --git a/Community/Tdarr_Plugin_lmg1_Reorder_Streams.js b/Community/Tdarr_Plugin_lmg1_Reorder_Streams.js new file mode 100644 index 0000000..e5a753b --- /dev/null +++ b/Community/Tdarr_Plugin_lmg1_Reorder_Streams.js @@ -0,0 +1,69 @@ + + + +function details() { + + return { + id: "Tdarr_Plugin_lmg1_Reorder_Streams", + Name: "Tdarr_Plugin_lmg1_Reorder_Streams ", + Type: "Video", + Description: `This plugin will move the video stream to the front so Tdarr will recognize the codec correctly.\n\n`, + Version: "1.00", + Link: "https://github.com/luigi311/Tdarr_Plugin_lmg1_Reorder_Streams" + } + +} + +function plugin(file) { + + //Must return this object + + var response = { + + processFile : false, + preset : '', + container : '.mp4', + handBrakeMode : false, + FFmpegMode : false, + reQueueAfter : false, + infoLog : '', + + } + + if (file.fileMedium !== "video") { + + console.log("File is not video") + + response.infoLog += " File is not video\n" + response.processFile = false; + + return response + + } else { + + response.FFmpegMode = true + response.container = '.' + file.container + + if(file.ffProbeData.streams[0].codec_type != 'video') { + + response.infoLog += "Video is not in the first stream" + response.preset = ',-map 0:v? -map 0:a? -map 0:s? -map 0:d? -map 0:t? -c copy' + response.reQueueAfter = false; + response.processFile = true; + + return response + + } else { + + response.infoLog += "File has video in first stream\n" + + } + + response.infoLog += " File meets conditions!\n" + return response + + } +} + +module.exports.details = details; +module.exports.plugin = plugin;