Skip to content

Commit dc0e967

Browse files
committed
Add changelog and update wording of description for NVENC temporal AQ
1 parent 5b74a10 commit dc0e967

3 files changed

Lines changed: 9 additions & 2 deletions

File tree

changelog.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
**<span style="color:#56adda">0.1.10</span>**
2+
- Adds better management of 10Bit video formats for NVIDIA, Intel, and AMD hardware.
3+
- Adds an improved fallback system to prevent failed decodes for QSV.
4+
- The video scaling smart filter has been improved to correctly work with custom resolutions and different aspect ratios.
5+
- A new debugging tool has been added to make troubleshooting and development easier.
6+
17
**<span style="color:#56adda">0.1.9</span>**
28
- Add some safety rails to the black-bar detection so we ignore bars of a few px
39

info.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@
1212
"on_worker_process": 1
1313
},
1414
"tags": "video,ffmpeg",
15-
"version": "0.1.9"
15+
"version": "0.1.10"
1616
}

lib/encoders/nvenc.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -500,7 +500,8 @@ def get_nvenc_enable_temporal_aq_form_settings(self):
500500
values = {
501501
"label": "Enable Temporal Adaptive Quantization",
502502
"description": "This adjusts the quantization parameter across frames, based on the motion and temporal complexity.\n"
503-
"This is particularly effective in scenes with varying levels of motion, enhancing quality where it's most needed.",
503+
"This is particularly effective in scenes with varying levels of motion, enhancing quality where it's most needed.\n"
504+
"This option requires Turing or newer hardware.",
504505
"sub_setting": True,
505506
}
506507
if self.settings.get_setting('mode') not in ['standard']:

0 commit comments

Comments
 (0)