Skip to content

Commit

Permalink
* Fixing #321 dhdr10_opt not added for x265 commands (thanks to Gizmo…
Browse files Browse the repository at this point in the history
…Dudex)
  • Loading branch information
cdgriffith committed Apr 14, 2022
1 parent d8a14e1 commit f135e45
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
3 changes: 2 additions & 1 deletion CHANGES
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@

## Version 4.9.0

* Adding #196 Support for HEVC Apple Silicon M1 encoder (thanks to Kay Singh)
* Adding #196 Support for AVC and HEVC Apple Silicon M1 encoder (thanks to Kay Singh)
* Adding #323 ignore errors options options for queue (thanks to Don Gafford)
* Fixing #321 dhdr10_opt not added for x265 commands (thanks to GizmoDudex)

## Version 4.8.1

Expand Down
2 changes: 2 additions & 0 deletions fastflix/encoders/hevc_x265/command_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,8 @@ def build(fastflix: FastFlix):

if settings.hdr10plus_metadata:
x265_params.append(f"dhdr10-info='{settings.hdr10plus_metadata}'")
if settings.dhdr10_opt:
x265_params.append(f"dhdr10_opt=1")

if settings.intra_encoding:
x265_params.append("keyint=1")
Expand Down
1 change: 1 addition & 0 deletions fastflix/widgets/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -1804,6 +1804,7 @@ def encode_video(self):
return
requests = ["add_items", str(self.app.fastflix.log_path)]

queue_list = self.get_queue_list()
for video in queue_list:
if video.status.ready:
break
Expand Down

0 comments on commit f135e45

Please sign in to comment.