Update: MigzPlugins

Updated all plugins to include "-max_muxing_queue_size 4096"
make-only-subtitle-default
Migz93 6 years ago
parent 86835f6682
commit b22c576c84

@ -93,7 +93,7 @@ function plugin(file, librarySettings, inputs) {
if (convert == true) {
response.infoLog += "☒File has title metadata. Removing \n"
response.preset = `,${ffmpegCommandInsert} -c copy`
response.preset = `,${ffmpegCommandInsert} -c copy -max_muxing_queue_size 4096`
response.reQueueAfter = true;
response.processFile = true;
} else {

@ -159,7 +159,7 @@ function plugin(file, librarySettings, inputs) {
if (convert === true && (audioStreamsRemoved != audioStreamCount)) {
response.processFile = true
response.preset = `, -map 0 ${ffmpegCommandInsert} -c copy`
response.preset = `, -map 0 ${ffmpegCommandInsert} -c copy -max_muxing_queue_size 4096`
response.container = '.' + file.container
response.reQueueAfter = true
} else {

@ -113,7 +113,7 @@ function plugin(file, librarySettings, inputs) {
}
if (convert === true ) {
response.processFile = true;
response.preset = `, -map 0 ${ffmpegCommandInsert} -c copy`
response.preset = `, -map 0 ${ffmpegCommandInsert} -c copy -max_muxing_queue_size 4096`
response.container = '.' + file.container
response.reQueueAfter = true;
} else {

@ -107,7 +107,7 @@ function plugin(file, librarySettings, inputs) {
if (convert == true) {
response.processFile = true;
response.preset = `, -map 0 -c:v copy -c:a copy ${ffmpegCommandInsert} -strict -2 -c:s copy `
response.preset = `, -map 0 -c:v copy -c:a copy ${ffmpegCommandInsert} -strict -2 -c:s copy -max_muxing_queue_size 4096 `
} else {
response.infoLog += "☑File contains all required audio formats. \n"
response.processFile = false;

@ -123,7 +123,7 @@ function plugin(file) {
if (convert == true) {
response.processFile = true;
response.preset = `,${ffmpegCommandInsert} -c copy`
response.preset = `,${ffmpegCommandInsert} -c copy -max_muxing_queue_size 4096`
response.reQueueAfter = true;
response.infoLog += "☒ Streams are out of order, reorganizing streams. Video, Audio, Subtitles. \n"
} else {

Loading…
Cancel
Save