mirror of
https://github.com/gabehf/Tdarr_Plugins.git
synced 2026-03-17 03:06:27 -07:00
Update: MigzPlugins
Updated all plugins to include "-max_muxing_queue_size 4096"
This commit is contained in:
parent
86835f6682
commit
b22c576c84
5 changed files with 49 additions and 49 deletions
|
|
@ -93,7 +93,7 @@ function plugin(file, librarySettings, inputs) {
|
||||||
|
|
||||||
if (convert == true) {
|
if (convert == true) {
|
||||||
response.infoLog += "☒File has title metadata. Removing \n"
|
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.reQueueAfter = true;
|
||||||
response.processFile = true;
|
response.processFile = true;
|
||||||
} else {
|
} else {
|
||||||
|
|
|
||||||
|
|
@ -159,7 +159,7 @@ function plugin(file, librarySettings, inputs) {
|
||||||
|
|
||||||
if (convert === true && (audioStreamsRemoved != audioStreamCount)) {
|
if (convert === true && (audioStreamsRemoved != audioStreamCount)) {
|
||||||
response.processFile = 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.container = '.' + file.container
|
||||||
response.reQueueAfter = true
|
response.reQueueAfter = true
|
||||||
} else {
|
} else {
|
||||||
|
|
|
||||||
|
|
@ -113,7 +113,7 @@ function plugin(file, librarySettings, inputs) {
|
||||||
}
|
}
|
||||||
if (convert === true ) {
|
if (convert === true ) {
|
||||||
response.processFile = 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.container = '.' + file.container
|
||||||
response.reQueueAfter = true;
|
response.reQueueAfter = true;
|
||||||
} else {
|
} else {
|
||||||
|
|
|
||||||
|
|
@ -107,7 +107,7 @@ function plugin(file, librarySettings, inputs) {
|
||||||
|
|
||||||
if (convert == true) {
|
if (convert == true) {
|
||||||
response.processFile = 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 {
|
} else {
|
||||||
response.infoLog += "☑File contains all required audio formats. \n"
|
response.infoLog += "☑File contains all required audio formats. \n"
|
||||||
response.processFile = false;
|
response.processFile = false;
|
||||||
|
|
|
||||||
|
|
@ -123,7 +123,7 @@ function plugin(file) {
|
||||||
|
|
||||||
if (convert == true) {
|
if (convert == true) {
|
||||||
response.processFile = true;
|
response.processFile = true;
|
||||||
response.preset = `,${ffmpegCommandInsert} -c copy`
|
response.preset = `,${ffmpegCommandInsert} -c copy -max_muxing_queue_size 4096`
|
||||||
response.reQueueAfter = true;
|
response.reQueueAfter = true;
|
||||||
response.infoLog += "☒ Streams are out of order, reorganizing streams. Video, Audio, Subtitles. \n"
|
response.infoLog += "☒ Streams are out of order, reorganizing streams. Video, Audio, Subtitles. \n"
|
||||||
} else {
|
} else {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue