Skip to content

Commit

Permalink
OP-7606 - fix creation of .mov (#6064)
Browse files Browse the repository at this point in the history
  • Loading branch information
kalisp committed Dec 18, 2023
1 parent 443d107 commit 0252c9e
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions openpype/hosts/photoshop/plugins/publish/extract_review.py
Original file line number Diff line number Diff line change
Expand Up @@ -170,8 +170,7 @@ def _generate_mov(self, ffmpeg_path, instance, fps, no_of_frames,
# Generate mov.
mov_path = os.path.join(staging_dir, "review.mov")
self.log.info(f"Generate mov review: {mov_path}")
args = [
ffmpeg_path,
args = ffmpeg_path + [
"-y",
"-i", source_files_pattern,
"-vf", "pad=ceil(iw/2)*2:ceil(ih/2)*2",
Expand Down

0 comments on commit 0252c9e

Please sign in to comment.