diff --git a/Community/Tdarr_Plugin_MC93_Migz1Remux.js b/Community/Tdarr_Plugin_MC93_Migz1Remux.js index 9ba65b768..02fc7a15d 100644 --- a/Community/Tdarr_Plugin_MC93_Migz1Remux.js +++ b/Community/Tdarr_Plugin_MC93_Migz1Remux.js @@ -136,8 +136,13 @@ const plugin = (file, librarySettings, inputs, otherArguments) => { return response; } - // If Container .ts or .avi set genpts to fix unknown timestamp - if (file.container.toLowerCase() === 'ts' || file.container.toLowerCase() === 'avi') { + // If Container .ts|.avi|.mpg|.mpeg set genpts to fix unknown timestamp + if ( + file.container.toLowerCase() === 'ts' + || file.container.toLowerCase() === 'avi' + || file.container.toLowerCase() === 'mpg' + || file.container.toLowerCase() === 'mpeg' + ) { genpts = '-fflags +genpts'; }