Formatting update

This commit is contained in:
HaveAGitGat 2019-10-30 02:09:10 +00:00
parent d055e4bdd9
commit b6fdb083bc
13 changed files with 113 additions and 113 deletions

View file

@ -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
}