@ -9,7 +9,7 @@ function details() {
Type : "Video" ,
Description : ` This plugin removes metadata (if a title exists) and adds a stereo 192kbit AAC track if an AAC track (any) doesn't exist. The output container is mp4. \n \n
` ,
Version : "1.0 0 ",
Version : "1.0 1 ",
Link : "https://github.com/HaveAGitGat/Tdarr_Plugin_hk76_GilbN_MP4_AAC_No_metaTitle"
}
@ -52,7 +52,20 @@ function plugin(file) {
var jsonString = JSON . stringify ( file )
///
if ( file . container != 'mp4' ) {
response . infoLog += " File is not in mp4 container! \n"
response . preset = ', -c:v copy -c:a copy'
response . reQueueAfter = true ;
response . processFile = true ;
return response
} else {
response . infoLog += " File is in mp4 container! \n"
}
if ( file . meta . Title != undefined ) {
response . infoLog += " File has title metadata \n"
@ -77,22 +90,8 @@ function plugin(file) {
}
if ( file . container != 'mp4' ) {
response . infoLog += " File is not in mp4 container! \n"
response . preset = ', -c:v copy -c:a copy'
response . reQueueAfter = true ;
response . processFile = true ;
return response
} else {
response . infoLog += " File is in mp4 container! \n"
}
response . infoLog += " File meets conditions! \n"
return response