diff --git a/Community/Tdarr_Plugin_a37x_Drawmonster_MP4_No_Title_Meta.js b/Community/Tdarr_Plugin_a37x_Drawmonster_MP4_No_Title_Meta.js index 5b0d384..a817444 100644 --- a/Community/Tdarr_Plugin_a37x_Drawmonster_MP4_No_Title_Meta.js +++ b/Community/Tdarr_Plugin_a37x_Drawmonster_MP4_No_Title_Meta.js @@ -43,7 +43,7 @@ function plugin(file) { 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 @@ -62,17 +62,17 @@ function plugin(file) { /// if(file.meta.Title != undefined ){ - response.infoLog += " File has title metadata \n" + response.infoLog += "☒File has title metadata \n" response.preset = ',-map_metadata -1 -c:v copy -c:a copy' response.reQueueAfter = true; response.processFile = true; return response }else{ - response.infoLog += " File has no title metadata \n" + response.infoLog += "☑File has no title metadata \n" } - response.infoLog += " File meets conditions! \n" + response.infoLog += "☑File meets conditions! \n" return response } diff --git a/Community/Tdarr_Plugin_a8hc_HaveAGitGat_HandBrake_H264_VeryFast1080p30.js b/Community/Tdarr_Plugin_a8hc_HaveAGitGat_HandBrake_H264_VeryFast1080p30.js index a5f59a3..5094e8f 100644 --- a/Community/Tdarr_Plugin_a8hc_HaveAGitGat_HandBrake_H264_VeryFast1080p30.js +++ b/Community/Tdarr_Plugin_a8hc_HaveAGitGat_HandBrake_H264_VeryFast1080p30.js @@ -43,7 +43,7 @@ function plugin(file) { 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 @@ -71,7 +71,7 @@ function plugin(file) { if(file.ffProbeData.streams[0].codec_name != 'h264'){ - response.infoLog += " File is not in h264! \n" + response.infoLog += "☒File is not in h264! \n" response.preset = '-Z "Very Fast 1080p30"' response.reQueueAfter = true; response.processFile = true; @@ -79,7 +79,7 @@ function plugin(file) { return response }else{ - response.infoLog += " File is already in h264! \n" + response.infoLog += "☑File is already in h264! \n" } @@ -87,7 +87,7 @@ function plugin(file) { if((file.meta.Title != "undefined") && !jsonString.includes("aac") && hasSubs){ - response.infoLog += " File has title metadata and no aac and subs \n" + response.infoLog += "☒File has title metadata and no aac and subs \n" response.preset = ',-map_metadata -1 -c:v copy -c:a copy' response.reQueueAfter = true; response.processFile = true; @@ -97,7 +97,7 @@ function plugin(file) { if(!jsonString.includes("aac") && hasSubs){ - response.infoLog += "File has no aac track and has subs \n" + response.infoLog += "☒File has no aac track and has subs \n" response.preset = '-sn,-map 0:v -map 0:a:0 -map 0:a -map 0:s? -map 0:d? -c copy -c:a:0 aac -b:a:0 192k -ac 2' response.reQueueAfter = true; response.processFile = true; @@ -108,7 +108,7 @@ function plugin(file) { if(file.meta.Title != "undefined" && hasSubs){ - response.infoLog += "File has title and has subs \n" + response.infoLog += "☒File has title and has subs \n" response.preset = '-sn,-map_metadata -1 -c:v copy -c:a copy' response.reQueueAfter = true; response.processFile = true; @@ -121,19 +121,19 @@ function plugin(file) { /// if(file.meta.Title != undefined ){ - response.infoLog += " File has title metadata \n" + response.infoLog += "☒File has title metadata \n" response.preset = ',-map_metadata -1 -c:v copy -c:a copy' response.reQueueAfter = true; response.processFile = true; response.FFmpegMode = true return response }else{ - response.infoLog += " File has no title metadata" + response.infoLog += "☑File has no title metadata" } if(!jsonString.includes("aac")){ - response.infoLog += " File has no aac track \n" + response.infoLog += "☒File has no aac track \n" response.preset = ',-map 0:v -map 0:a:0 -map 0:a -map 0:s? -map 0:d? -c copy -c:a:0 aac -b:a:0 192k -ac 2' response.reQueueAfter = true; response.processFile = true; @@ -141,12 +141,12 @@ function plugin(file) { return response }else{ - response.infoLog += " File has aac track \n" + response.infoLog += "☑File has aac track \n" } if(hasSubs){ - response.infoLog += " File has subs \n" + response.infoLog += "☒File has subs \n" response.preset = '-sn, -c:v copy -c:a copy' response.reQueueAfter = true; response.processFile = true; @@ -154,11 +154,11 @@ function plugin(file) { return response }else{ - response.infoLog += " File has no subs \n" + response.infoLog += "☑File has no subs \n" } - response.infoLog += " File meets conditions! \n" + response.infoLog += "☑File meets conditions! \n" return response } diff --git a/Community/Tdarr_Plugin_a9hc_HaveAGitGat_HandBrake_H264_Fast1080p30.js b/Community/Tdarr_Plugin_a9hc_HaveAGitGat_HandBrake_H264_Fast1080p30.js index dbccd2c..be69d6b 100644 --- a/Community/Tdarr_Plugin_a9hc_HaveAGitGat_HandBrake_H264_Fast1080p30.js +++ b/Community/Tdarr_Plugin_a9hc_HaveAGitGat_HandBrake_H264_Fast1080p30.js @@ -43,7 +43,7 @@ function plugin(file) { 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 @@ -71,7 +71,7 @@ function plugin(file) { if(file.ffProbeData.streams[0].codec_name != 'h264'){ - response.infoLog += " File is not in h264! \n" + response.infoLog += "☒File is not in h264! \n" response.preset = '-Z "Fast 1080p30"' response.reQueueAfter = true; response.processFile = true; @@ -79,7 +79,7 @@ function plugin(file) { return response }else{ - response.infoLog += " File is already in h264! \n" + response.infoLog += "☑File is already in h264! \n" } @@ -87,7 +87,7 @@ function plugin(file) { if((file.meta.Title != "undefined") && !jsonString.includes("aac") && hasSubs){ - response.infoLog += " File has title metadata and no aac and subs \n" + response.infoLog += "☒File has title metadata and no aac and subs \n" response.preset = ',-map_metadata -1 -c:v copy -c:a copy' response.reQueueAfter = true; response.processFile = true; @@ -97,7 +97,7 @@ function plugin(file) { if(!jsonString.includes("aac") && hasSubs){ - response.infoLog += "File has no aac track and has subs \n" + response.infoLog += "☒File has no aac track and has subs \n" response.preset = '-sn,-map 0:v -map 0:a:0 -map 0:a -map 0:s? -map 0:d? -c copy -c:a:0 aac -b:a:0 192k -ac 2' response.reQueueAfter = true; response.processFile = true; @@ -108,7 +108,7 @@ function plugin(file) { if(file.meta.Title != "undefined" && hasSubs){ - response.infoLog += "File has title and has subs \n" + response.infoLog += "☒File has title and has subs \n" response.preset = '-sn,-map_metadata -1 -c:v copy -c:a copy' response.reQueueAfter = true; response.processFile = true; @@ -121,19 +121,19 @@ function plugin(file) { /// if(file.meta.Title != undefined ){ - response.infoLog += " File has title metadata \n" + response.infoLog += "☒File has title metadata \n" response.preset = ',-map_metadata -1 -c:v copy -c:a copy' response.reQueueAfter = true; response.processFile = true; response.FFmpegMode = true return response }else{ - response.infoLog += " File has no title metadata" + response.infoLog += "☑File has no title metadata" } if(!jsonString.includes("aac")){ - response.infoLog += " File has no aac track \n" + response.infoLog += "☒File has no aac track \n" response.preset = ',-map 0:v -map 0:a:0 -map 0:a -map 0:s? -map 0:d? -c copy -c:a:0 aac -b:a:0 192k -ac 2' response.reQueueAfter = true; response.processFile = true; @@ -141,12 +141,12 @@ function plugin(file) { return response }else{ - response.infoLog += " File has aac track \n" + response.infoLog += "☑File has aac track \n" } if(hasSubs){ - response.infoLog += " File has subs \n" + response.infoLog += "☒File has subs \n" response.preset = '-sn, -c:v copy -c:a copy' response.reQueueAfter = true; response.processFile = true; @@ -154,11 +154,11 @@ function plugin(file) { return response }else{ - response.infoLog += " File has no subs \n" + response.infoLog += "☑File has no subs \n" } - response.infoLog += " File meets conditions! \n" + response.infoLog += "☑File meets conditions! \n" return response } diff --git a/Community/Tdarr_Plugin_e3jc_Tharic_H.264_MKV_480p30_No_Subs_No_Title_Meta.js b/Community/Tdarr_Plugin_e3jc_Tharic_H.264_MKV_480p30_No_Subs_No_Title_Meta.js index 6b260b6..410731b 100644 --- a/Community/Tdarr_Plugin_e3jc_Tharic_H.264_MKV_480p30_No_Subs_No_Title_Meta.js +++ b/Community/Tdarr_Plugin_e3jc_Tharic_H.264_MKV_480p30_No_Subs_No_Title_Meta.js @@ -43,7 +43,7 @@ function plugin(file) { console.log("File is not video") - response.infoLog += " File is not video" + response.infoLog += "☒File is not video \n" response.processFile = false; return response @@ -77,11 +77,11 @@ function plugin(file) { response.handBrakeMode =true response.FFmpegMode = false response.reQueueAfter = true; - response.infoLog += " File is not h264 480p!" + response.infoLog += "☒File is not h264 480p! \n" return response }else{ - response.infoLog += " File is h264 480p!" + response.infoLog += "☑File is h264 480p! \n" } // @@ -94,10 +94,10 @@ function plugin(file) { response.handBrakeMode =false response.FFmpegMode = true response.reQueueAfter = true; - response.infoLog += "File has title and has subs" + response.infoLog += "☒File has title and has subs \n" return response }else{ - response.infoLog += "File has no title and has no subs" + response.infoLog += "☑File has no title and has no subs \n" } @@ -110,12 +110,12 @@ function plugin(file) { response.handBrakeMode =false response.FFmpegMode = true response.reQueueAfter = true; - response.infoLog += " File has title metadata" + response.infoLog += "☒File has title metadata \n" return response }else{ - response.infoLog += " File has no title metadata" + response.infoLog += "☑File has no title metadata \n" } @@ -127,11 +127,11 @@ function plugin(file) { response.handBrakeMode =false response.FFmpegMode = true response.reQueueAfter = true; - response.infoLog += " File has subs" + response.infoLog += "☒File has subs \n" return response }else{ - response.infoLog += " File has no subs" + response.infoLog += "☑File has no subs \n" } @@ -144,19 +144,19 @@ function plugin(file) { response.handBrakeMode =false response.FFmpegMode = true response.reQueueAfter = true; - response.infoLog += " File is not in mkv container!" + response.infoLog += "☒File is not in mkv container! \n" return response }else{ - response.infoLog += " File is in mkv container!" + response.infoLog += "☑File is in mkv container! \n" } response.processFile = false; - response.infoLog += " File meets conditions!" + response.infoLog += "☑File meets conditions! \n" return response } diff --git a/Community/Tdarr_Plugin_e3jd_Tharic_H.264_MKV_720p30_No_Subs_No_Title_Meta.js b/Community/Tdarr_Plugin_e3jd_Tharic_H.264_MKV_720p30_No_Subs_No_Title_Meta.js index ca0109a..707e109 100644 --- a/Community/Tdarr_Plugin_e3jd_Tharic_H.264_MKV_720p30_No_Subs_No_Title_Meta.js +++ b/Community/Tdarr_Plugin_e3jd_Tharic_H.264_MKV_720p30_No_Subs_No_Title_Meta.js @@ -43,7 +43,7 @@ function plugin(file) { console.log("File is not video") - response.infoLog += " File is not video" + response.infoLog += "☒File is not video \n" response.processFile = false; return response @@ -77,11 +77,11 @@ function plugin(file) { response.handBrakeMode =true response.FFmpegMode = false response.reQueueAfter = true; - response.infoLog += " File is not h264 720p!" + response.infoLog += "☒File is not h264 720p! \n" return response }else{ - response.infoLog += " File is h264 720p!" + response.infoLog += "☑File is h264 720p! \n" } // @@ -94,10 +94,10 @@ function plugin(file) { response.handBrakeMode =false response.FFmpegMode = true response.reQueueAfter = true; - response.infoLog += "File has title and has subs" + response.infoLog += "☒File has title and has subs \n" return response }else{ - response.infoLog += "File has no title and has no subs" + response.infoLog += "☑File has no title and has no subs \n" } @@ -110,12 +110,12 @@ function plugin(file) { response.handBrakeMode =false response.FFmpegMode = true response.reQueueAfter = true; - response.infoLog += " File has title metadata" + response.infoLog += "☒File has title metadata \n" return response }else{ - response.infoLog += " File has no title metadata" + response.infoLog += "☑File has no title metadata \n" } @@ -127,11 +127,11 @@ function plugin(file) { response.handBrakeMode =false response.FFmpegMode = true response.reQueueAfter = true; - response.infoLog += " File has subs" + response.infoLog += "☒File has subs \n" return response }else{ - response.infoLog += " File has no subs" + response.infoLog += "☑File has no subs \n" } @@ -144,19 +144,19 @@ function plugin(file) { response.handBrakeMode =false response.FFmpegMode = true response.reQueueAfter = true; - response.infoLog += " File is not in mkv container!" + response.infoLog += "☒File is not in mkv container! \n" return response }else{ - response.infoLog += " File is in mkv container!" + response.infoLog += "☑File is in mkv container! \n" } response.processFile = false; - response.infoLog += " File meets conditions!" + response.infoLog += "☑File meets conditions! \n" return response } diff --git a/Community/Tdarr_Plugin_e3je_Tharic_H.264_MKV_1080p30_No_Subs_No_Title_Meta.js b/Community/Tdarr_Plugin_e3je_Tharic_H.264_MKV_1080p30_No_Subs_No_Title_Meta.js index 0bf2355..3200e6a 100644 --- a/Community/Tdarr_Plugin_e3je_Tharic_H.264_MKV_1080p30_No_Subs_No_Title_Meta.js +++ b/Community/Tdarr_Plugin_e3je_Tharic_H.264_MKV_1080p30_No_Subs_No_Title_Meta.js @@ -43,7 +43,7 @@ function plugin(file) { console.log("File is not video") - response.infoLog += " File is not video" + response.infoLog += "☒File is not video \n" response.processFile = false; return response @@ -77,11 +77,11 @@ function plugin(file) { response.handBrakeMode =true response.FFmpegMode = false response.reQueueAfter = true; - response.infoLog += " File is not h264 1080p!" + response.infoLog += "☒File is not h264 1080p! \n" return response }else{ - response.infoLog += " File is h264 1080p!" + response.infoLog += "☑File is h264 1080p!" } // @@ -94,10 +94,10 @@ function plugin(file) { response.handBrakeMode =false response.FFmpegMode = true response.reQueueAfter = true; - response.infoLog += "File has title and has subs" + response.infoLog += "☒File has title and has subs \n" return response }else{ - response.infoLog += "File has no title and has no subs" + response.infoLog += "☑File has no title and has no subs \n" } @@ -110,12 +110,12 @@ function plugin(file) { response.handBrakeMode =false response.FFmpegMode = true response.reQueueAfter = true; - response.infoLog += " File has title metadata" + response.infoLog += "☒File has title metadata \n" return response }else{ - response.infoLog += " File has no title metadata" + response.infoLog += "☑File has no title metadata \n" } @@ -127,11 +127,11 @@ function plugin(file) { response.handBrakeMode =false response.FFmpegMode = true response.reQueueAfter = true; - response.infoLog += " File has subs" + response.infoLog += "☒File has subs \n" return response }else{ - response.infoLog += " File has no subs" + response.infoLog += "☑File has no subs \n" } @@ -144,19 +144,19 @@ function plugin(file) { response.handBrakeMode =false response.FFmpegMode = true response.reQueueAfter = true; - response.infoLog += " File is not in mkv container!" + response.infoLog += "☒File is not in mkv container! \n" return response }else{ - response.infoLog += " File is in mkv container!" + response.infoLog += "☑File is in mkv container! \n" } response.processFile = false; - response.infoLog += " File meets conditions!" + response.infoLog += "☑File meets conditions! \n" return response } diff --git a/Community/Tdarr_Plugin_hk75_Drawmonster_MP4_AAC_No_Subs_No_metaTitle.js b/Community/Tdarr_Plugin_hk75_Drawmonster_MP4_AAC_No_Subs_No_metaTitle.js index 7f9014b..fc4d078 100644 --- a/Community/Tdarr_Plugin_hk75_Drawmonster_MP4_AAC_No_Subs_No_metaTitle.js +++ b/Community/Tdarr_Plugin_hk75_Drawmonster_MP4_AAC_No_Subs_No_metaTitle.js @@ -43,7 +43,7 @@ function plugin(file) { 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 @@ -76,7 +76,7 @@ function plugin(file) { if((file.meta.Title != "undefined") && !jsonString.includes("aac") && hasSubs){ - response.infoLog += " File has title metadata and no aac and subs \n" + response.infoLog += "☒File has title metadata and no aac and subs \n" response.preset = ',-map_metadata -1 -c:v copy -c:a copy' response.reQueueAfter = true; response.processFile = true; @@ -85,7 +85,7 @@ function plugin(file) { if(!jsonString.includes("aac") && hasSubs){ - response.infoLog += "File has no aac track and has subs \n" + response.infoLog += "☒File has no aac track and has subs \n" response.preset = '-sn,-map 0:v -map 0:a:0 -map 0:a -map 0:s? -map 0:d? -c copy -c:a:0 aac -b:a:0 192k -ac 2' response.reQueueAfter = true; response.processFile = true; @@ -95,7 +95,7 @@ function plugin(file) { if(file.meta.Title != "undefined" && hasSubs){ - response.infoLog += "File has title and has subs \n" + response.infoLog += "☒File has title and has subs \n" response.preset = '-sn,-map_metadata -1 -c:v copy -c:a copy' response.reQueueAfter = true; response.processFile = true; @@ -107,43 +107,43 @@ function plugin(file) { /// if(file.meta.Title != undefined ){ - response.infoLog += " File has title metadata \n" + response.infoLog += "☒File has title metadata \n" response.preset = ',-map_metadata -1 -c:v copy -c:a copy' response.reQueueAfter = true; response.processFile = true; return response }else{ - response.infoLog += " File has no title metadata \n" + response.infoLog += "☑File has no title metadata \n" } if(!jsonString.includes("aac")){ - response.infoLog += " File has no aac track" + response.infoLog += "☒File has no aac track \n" response.preset = ',-map 0:v -map 0:a:0 -map 0:a -map 0:s? -map 0:d? -c copy -c:a:0 aac -b:a:0 192k -ac 2' response.reQueueAfter = true; response.processFile = true; return response }else{ - response.infoLog += " File has aac track \n" + response.infoLog += "☑File has aac track \n" } if(hasSubs){ - response.infoLog += " File has subs \n" + response.infoLog += "☒File has subs \n" response.preset = '-sn, -c:v copy -c:a copy' response.reQueueAfter = true; response.processFile = true; return response }else{ - response.infoLog += " File has no subs \n" + response.infoLog += "☑File has no subs \n" } if( file.container != 'mp4'){ - response.infoLog += " File is not in mp4 container! \n" + response.infoLog += "☒File is not in mp4 container! \n" response.preset = ', -c:v copy -c:a copy' response.reQueueAfter = true; response.processFile = true; @@ -152,13 +152,13 @@ function plugin(file) { }else{ - response.infoLog += " File is in mp4 container! \n" + response.infoLog += "☑File is in mp4 container! \n" } - response.infoLog += " File meets conditions! \n" + response.infoLog += "☑File meets conditions! \n" return response } diff --git a/Community/Tdarr_Plugin_hk76_GilbN_MP4_AAC_No_metaTitle.js b/Community/Tdarr_Plugin_hk76_GilbN_MP4_AAC_No_metaTitle.js index 941233e..522ab9e 100644 --- a/Community/Tdarr_Plugin_hk76_GilbN_MP4_AAC_No_metaTitle.js +++ b/Community/Tdarr_Plugin_hk76_GilbN_MP4_AAC_No_metaTitle.js @@ -43,7 +43,7 @@ function plugin(file) { 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 @@ -54,7 +54,7 @@ function plugin(file) { if (file.container != 'mp4') { - response.infoLog += " File is not in mp4 container! \n" + response.infoLog += "☒File is not in mp4 container! \n" response.preset = ', -c:v copy -c:a copy' response.reQueueAfter = true; response.processFile = true; @@ -62,38 +62,38 @@ function plugin(file) { } else { - response.infoLog += " File is in mp4 container! \n" + response.infoLog += "☑File is in mp4 container! \n" } if (file.meta.Title != undefined) { - response.infoLog += " File has title metadata \n" + response.infoLog += "☒File has title metadata \n" response.preset = ',-map_metadata -1 -c:v copy -c:a copy' response.reQueueAfter = true; response.processFile = true; return response } else { - response.infoLog += " File has no title metadata \n" + response.infoLog += "☑File has no title metadata \n" } if (!jsonString.includes("aac")) { - response.infoLog += " File has no aac track" + response.infoLog += "☒File has no aac track" response.preset = ',-map 0:v -map 0:a:0 -map 0:a -map 0:s? -map 0:d? -c copy -c:a:0 aac -b:a:0 192k -ac 2' response.reQueueAfter = true; response.processFile = true; return response } else { - response.infoLog += " File has aac track \n" + response.infoLog += "☑File has aac track \n" } - response.infoLog += " File meets conditions! \n" + response.infoLog += "☑File meets conditions! \n" return response } diff --git a/Community/Tdarr_Plugin_nc7x_Drawmonster_No_Title_Meta.js b/Community/Tdarr_Plugin_nc7x_Drawmonster_No_Title_Meta.js index 7cd42e2..a995f0a 100644 --- a/Community/Tdarr_Plugin_nc7x_Drawmonster_No_Title_Meta.js +++ b/Community/Tdarr_Plugin_nc7x_Drawmonster_No_Title_Meta.js @@ -41,7 +41,7 @@ function plugin(file) { 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 @@ -53,17 +53,17 @@ function plugin(file) { if (file.meta.Title != undefined) { - response.infoLog += " File has title metadata \n" + response.infoLog += "☒File has title metadata \n" response.preset = ',-map_metadata -1 -c:v copy -c:a copy' response.reQueueAfter = true; response.processFile = true; return response } else { - response.infoLog += " File has no title metadata \n" + response.infoLog += "☑File has no title metadata \n" } - response.infoLog += " File meets conditions! \n" + response.infoLog += "☑File meets conditions! \n" return response } diff --git a/Community/Tdarr_Plugin_s7x8_winsome_h265.js b/Community/Tdarr_Plugin_s7x8_winsome_h265.js index e7c8929..4fe277c 100644 --- a/Community/Tdarr_Plugin_s7x8_winsome_h265.js +++ b/Community/Tdarr_Plugin_s7x8_winsome_h265.js @@ -42,7 +42,7 @@ function plugin(file) { console.log("File is not video") - response.infoLog += " File is not video" + response.infoLog += "☒File is not video \n" response.processFile = false; return response @@ -91,12 +91,12 @@ function plugin(file) { response.handBrakeMode =false response.FFmpegMode = true response.reQueueAfter = true; - response.infoLog += " File is already hevc and doesn't have English language track in AC3,EAC3 or DTS!" + response.infoLog += "☒File is already hevc and doesn't have English language track in AC3,EAC3 or DTS! \n" return response }else{ - response.infoLog += " File is already hevc and has English language track in AC3,EAC3 or DTS!" + response.infoLog += "☑File is already hevc and has English language track in AC3,EAC3 or DTS! \n" } @@ -110,12 +110,12 @@ function plugin(file) { response.handBrakeMode =false response.FFmpegMode = true response.reQueueAfter = true; - response.infoLog += " File is not in mkv container!" + response.infoLog += "☒File is not in mkv container! \n" return response }else{ - response.infoLog += " File is in mkv container!" + response.infoLog += "☑File is in mkv container! \n" } @@ -130,7 +130,7 @@ function plugin(file) { response.handBrakeMode = true response.FFmpegMode = true response.reQueueAfter = true; - response.infoLog += " File isn't in hevc!" + response.infoLog += "☒File isn't in hevc! \n" return response } diff --git a/Community/Tdarr_Plugin_s7x9_winsome_h265_10bit.js b/Community/Tdarr_Plugin_s7x9_winsome_h265_10bit.js index df86edb..64fbae2 100644 --- a/Community/Tdarr_Plugin_s7x9_winsome_h265_10bit.js +++ b/Community/Tdarr_Plugin_s7x9_winsome_h265_10bit.js @@ -42,7 +42,7 @@ function plugin(file) { console.log("File is not video") - response.infoLog += " File is not video" + response.infoLog += "☒File is not video" response.processFile = false; return response @@ -91,12 +91,12 @@ function plugin(file) { response.handBrakeMode =false response.FFmpegMode = true response.reQueueAfter = true; - response.infoLog += " File is already hevc and doesn't have English language track in AC3,EAC3 or DTS!" + response.infoLog += "☒File is already hevc and doesn't have English language track in AC3,EAC3 or DTS! \n" return response }else{ - response.infoLog += " File is already hevc and has English language track in AC3,EAC3 or DTS!" + response.infoLog += "☑File is already hevc and has English language track in AC3,EAC3 or DTS! \n" } @@ -110,12 +110,12 @@ function plugin(file) { response.handBrakeMode =false response.FFmpegMode = true response.reQueueAfter = true; - response.infoLog += " File is not in mkv container!" + response.infoLog += "☒File is not in mkv container! \n" return response }else{ - response.infoLog += " File is in mkv container!" + response.infoLog += "☑File is in mkv container! \n" } @@ -130,7 +130,7 @@ function plugin(file) { response.handBrakeMode = true response.FFmpegMode = true response.reQueueAfter = true; - response.infoLog += " File isn't in hevc!" + response.infoLog += "☒File isn't in hevc! \n" return response } diff --git a/Community/Tdarr_Plugin_s7x9_winsome_h265_nvenc.js b/Community/Tdarr_Plugin_s7x9_winsome_h265_nvenc.js index 2434aea..ce59775 100644 --- a/Community/Tdarr_Plugin_s7x9_winsome_h265_nvenc.js +++ b/Community/Tdarr_Plugin_s7x9_winsome_h265_nvenc.js @@ -42,7 +42,7 @@ function plugin(file) { console.log("File is not video") - response.infoLog += " File is not video" + response.infoLog += "☒File is not video \n" response.processFile = false; return response @@ -91,12 +91,12 @@ function plugin(file) { response.handBrakeMode =false response.FFmpegMode = true response.reQueueAfter = true; - response.infoLog += " File is already hevc and doesn't have English language track in AC3,EAC3 or DTS!" + response.infoLog += "☒File is already hevc and doesn't have English language track in AC3,EAC3 or DTS! \n" return response }else{ - response.infoLog += " File is already hevc and has English language track in AC3,EAC3 or DTS!" + response.infoLog += "☑File is already hevc and has English language track in AC3,EAC3 or DTS! \n" } @@ -110,12 +110,12 @@ function plugin(file) { response.handBrakeMode =false response.FFmpegMode = true response.reQueueAfter = true; - response.infoLog += " File is not in mkv container!" + response.infoLog += "☒File is not in mkv container! \n" return response }else{ - response.infoLog += " File is in mkv container!" + response.infoLog += "☑File is in mkv container! \n" } @@ -130,7 +130,7 @@ function plugin(file) { response.handBrakeMode = true response.FFmpegMode = true response.reQueueAfter = true; - response.infoLog += " File isn't in hevc!" + response.infoLog += "☒File isn't in hevc! \n" return response } diff --git a/Community/Tdarr_Plugin_x7ab_Remove_Subs.js b/Community/Tdarr_Plugin_x7ab_Remove_Subs.js index c7566ce..2c0377b 100644 --- a/Community/Tdarr_Plugin_x7ab_Remove_Subs.js +++ b/Community/Tdarr_Plugin_x7ab_Remove_Subs.js @@ -39,7 +39,7 @@ function plugin(file) { 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 @@ -65,18 +65,18 @@ function plugin(file) { if(hasSubs){ - response.infoLog += " File has subs \n" + response.infoLog += "☒File has subs \n" response.preset = '-sn, -c:v copy -c:a copy' response.reQueueAfter = true; response.processFile = true; return response }else{ - response.infoLog += " File has no subs \n" + response.infoLog += "☑File has no subs \n" } - response.infoLog += " File meets conditions! \n" + response.infoLog += "☑File meets conditions! \n" return response }