Skip to content
This repository has been archived by the owner on Sep 20, 2024. It is now read-only.

Commit

Permalink
Merge pull request #1588 from pypeclub/bugfix/ffmpeg_filters_in_quote…
Browse files Browse the repository at this point in the history
…_marks
  • Loading branch information
mkolar authored May 28, 2021
2 parents bc25e27 + 4ef2e01 commit 691cd68
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions pype/plugins/global/publish/extract_review.py
Original file line number Diff line number Diff line change
Expand Up @@ -576,10 +576,12 @@ def ffmpeg_full_args(
all_args.append("\"{}\"".format(self.ffmpeg_path))
all_args.extend(input_args)
if video_filters:
all_args.append("-filter:v {}".format(",".join(video_filters)))
all_args.append("-filter:v")
all_args.append("\"{}\"".format(",".join(video_filters)))

if audio_filters:
all_args.append("-filter:a {}".format(",".join(audio_filters)))
all_args.append("-filter:a")
all_args.append("\"{}\"".format(",".join(audio_filters)))

all_args.extend(output_args)

Expand Down

0 comments on commit 691cd68

Please sign in to comment.