From 173d5e4528cf55dcb6027869f5b9de8154330474 Mon Sep 17 00:00:00 2001 From: "Robert D. Rioja (miapuffia)" Date: Thu, 20 Apr 2023 23:50:15 -0400 Subject: [PATCH] Fix setting postProcessor args (#205) * Update Options.php Added in missing postprocessor-args function * Update Options.php Fixed formatting * Fix setting postProcessor args --- src/Options.php | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/Options.php b/src/Options.php index 9a55db1..8cc6a1b 100644 --- a/src/Options.php +++ b/src/Options.php @@ -1400,6 +1400,14 @@ public function recodeVideo(?string $recodeVideo): self return $new; } + public function postProcessorArgs(?string $postProcessorArgs): self + { + $new = clone $this; + $new->postProcessorArgs = $postProcessorArgs; + + return $new; + } + public function keepVideo(bool $keepVideo): self { $new = clone $this;