mirror of
https://github.com/gabehf/Tdarr_Plugins.git
synced 2026-03-09 07:29:04 -07:00
Merge pull request #755 from HaveAGitGat/set_container
Fix: use overallInputArguments
This commit is contained in:
commit
105638a544
2 changed files with 2 additions and 2 deletions
|
|
@ -105,7 +105,7 @@ var plugin = function (args) {
|
|||
'mpg',
|
||||
'mpeg',
|
||||
].includes(container)) {
|
||||
args.variables.ffmpegCommand.overallOuputArguments.push('-fflags', '+genpts');
|
||||
args.variables.ffmpegCommand.overallInputArguments.push('-fflags', '+genpts');
|
||||
}
|
||||
}
|
||||
return {
|
||||
|
|
|
|||
|
|
@ -124,7 +124,7 @@ const plugin = (args: IpluginInputArgs): IpluginOutputArgs => {
|
|||
'mpeg',
|
||||
].includes(container)
|
||||
) {
|
||||
args.variables.ffmpegCommand.overallOuputArguments.push('-fflags', '+genpts');
|
||||
args.variables.ffmpegCommand.overallInputArguments.push('-fflags', '+genpts');
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue