diff --git a/docs/source/about/advanced_usage.rst b/docs/source/about/advanced_usage.rst index ab46db3a..f2087728 100644 --- a/docs/source/about/advanced_usage.rst +++ b/docs/source/about/advanced_usage.rst @@ -667,7 +667,7 @@ qp ^^ **Description** - Quantitization Parameter. Some devices don't support Constant Bit Rate. For those devices, QP is used instead. + Quantization Parameter. Some devices don't support Constant Bit Rate. For those devices, QP is used instead. .. Warning:: Higher value means more compression, but less quality. @@ -683,7 +683,7 @@ min_threads ^^^^^^^^^^^ **Description** - Minimum number of threads used by ffmpeg to encode the video. + Minimum number of threads used for software encoding. .. Note:: Increasing the value slightly reduces encoding efficiency, but the tradeoff is usually worth it to gain the use of more CPU cores for encoding. The ideal value is the lowest value that can reliably encode at your diff --git a/src_assets/common/assets/web/config.html b/src_assets/common/assets/web/config.html index 849ccac6..bb961c62 100644 --- a/src_assets/common/assets/web/config.html +++ b/src_assets/common/assets/web/config.html @@ -461,7 +461,7 @@
- +
- Quantitization Parameter
+ Quantization Parameter
Some devices may not support Constant Bit Rate.
For those devices, QP is used instead.
Higher value means more compression, but less quality
@@ -479,7 +479,7 @@
Minimum Software Encoding Thread Count
- Minimum number of threads used by ffmpeg to encode the video.
Increasing the value slightly reduces encoding efficiency, but the tradeoff is usually
worth it to gain the use of more CPU cores for encoding. The ideal value is the lowest
value that can reliably encode at your desired streaming settings on your hardware. @@ -523,9 +522,10 @@
@@ -727,6 +727,7 @@
+
{ - return el.id !== "va-api"; + return el.id !== "va-api" && el.id !== "vt"; }); } if (this.platform == "linux") { this.tabs = this.tabs.filter((el) => { - return el.id !== "amd"; + return el.id !== "amd" && el.id !== "vt"; + }); + } + if (this.platform == "macos") { + this.tabs = this.tabs.filter((el) => { + return el.id !== "amd" && el.id !== "nv" && el.id !== "va-api"; }); }