Skip to content

Commit

Permalink
Fix setting postProcessor args (#205)
Browse files Browse the repository at this point in the history
* Update Options.php

Added in missing postprocessor-args function

* Update Options.php

Fixed formatting

* Fix setting postProcessor args
  • Loading branch information
miapuffia authored Apr 21, 2023
1 parent 074ad03 commit 173d5e4
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/Options.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 173d5e4

Please sign in to comment.