Skip to content

Commit

Permalink
* Fixing #324 NVEncC wrong Interlace Value set by FastFlix (thanks to…
Browse files Browse the repository at this point in the history
… Wontell)
  • Loading branch information
cdgriffith committed Apr 14, 2022
1 parent f135e45 commit 85ac417
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
* 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)
* Fixing #327 FastFlix Duplicates encoding task and encodes same movie to infinity (thanks to Wontell)
* Fixing #324 NVEncC wrong Interlace Value set by FastFlix (thanks to Wontell)

## Version 4.8.1

Expand Down
2 changes: 1 addition & 1 deletion fastflix/encoders/nvencc_avc/command_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ def build(fastflix: FastFlix):
"--colorrange",
"auto",
f"--avsync {vsync_setting}",
(f"--interlace {video.interlaced}" if video.interlaced else ""),
(f"--interlace {video.interlaced}" if video.interlaced and video.interlaced != "False" else ""),
("--vpp-yadif" if video.video_settings.deinterlace else ""),
(f"--vpp-colorspace hdr2sdr=mobius" if video.video_settings.remove_hdr else ""),
remove_hdr,
Expand Down
2 changes: 1 addition & 1 deletion fastflix/encoders/nvencc_hevc/command_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ def build(fastflix: FastFlix):
"--colorrange",
"auto",
f"--avsync {vsync_setting}",
(f"--interlace {video.interlaced}" if video.interlaced else ""),
(f"--interlace {video.interlaced}" if video.interlaced and video.interlaced != "False" else ""),
("--vpp-yadif" if video.video_settings.deinterlace else ""),
(f"--vpp-colorspace hdr2sdr=mobius" if video.video_settings.remove_hdr else ""),
remove_hdr,
Expand Down

0 comments on commit 85ac417

Please sign in to comment.