From fa5c20cfc1e0213c1297105eb85ffe66a7cbc668 Mon Sep 17 00:00:00 2001 From: Damiano Galassi Date: Thu, 17 Feb 2022 09:15:33 +0100 Subject: [PATCH] docs: en: add keyint option in VideoToolbox page. --- source/docs/en/1.5.0/technical/video-videotoolbox.markdown | 3 ++- source/docs/en/latest/technical/video-videotoolbox.markdown | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/source/docs/en/1.5.0/technical/video-videotoolbox.markdown b/source/docs/en/1.5.0/technical/video-videotoolbox.markdown index 0d973f8c..a791587d 100644 --- a/source/docs/en/1.5.0/technical/video-videotoolbox.markdown +++ b/source/docs/en/1.5.0/technical/video-videotoolbox.markdown @@ -69,9 +69,10 @@ The following value types are supported (each option only accepts one value type | Option | Type | H.264 | H.265 | Detail | |------------------|-------------|:-----:|:-----:|-----------------------------------------------------------------------------------------------------------| | gpu-registryid | int | ✓ | ✓ | GPU selection. If set, the VideoToolbox will only use a hardware encoder running on the GPU specified by the provided GPU registryID. | +| keyint | int | ✓ | ✓ | Sets the maximum interval between key frames, also known as the key frame rate. | | bframes | boolean | ✓ | ✓ | Set to `1` to enable Reference B-Frames (default), `0` to disable. | | cabac | boolean | ✓ | | Set to `1` to enable cabac, `0` to disable. Note the hyphen for H.264. | -| slice-max-size | boolean | ✓ | | Set the maximum slice size for H.264 encoding in bytes. | +| slice-max-size | boolean | ✓ | | Sets the maximum slice size for H.264 encoding in bytes. | | vbv-bufsize | boolean | ✓ | ✓ | Sets the size of the VBV buffer in bytes per second. | | vbv-maxrate | boolean | ✓ | ✓ | Sets the maximum rate the VBV buffer should be assumed to refill at, in bytes per second. | | max-frame-delay | int | ✓ | ✓ | The maximum frame delay count is the maximum number of frames that a compressor is allowed to hold before it must output a compressed frame. | diff --git a/source/docs/en/latest/technical/video-videotoolbox.markdown b/source/docs/en/latest/technical/video-videotoolbox.markdown index c9308c1e..7b4da7cb 100644 --- a/source/docs/en/latest/technical/video-videotoolbox.markdown +++ b/source/docs/en/latest/technical/video-videotoolbox.markdown @@ -69,9 +69,10 @@ The following value types are supported (each option only accepts one value type | Option | Type | H.264 | H.265 | Detail | |------------------|-------------|:-----:|:-----:|-----------------------------------------------------------------------------------------------------------| | gpu-registryid | int | ✓ | ✓ | GPU selection. If set, the VideoToolbox will only use a hardware encoder running on the GPU specified by the provided GPU registryID. | +| keyint | int | ✓ | ✓ | Sets the maximum interval between key frames, also known as the key frame rate. | | bframes | boolean | ✓ | ✓ | Set to `1` to enable Reference B-Frames (default), `0` to disable. | | cabac | boolean | ✓ | | Set to `1` to enable cabac, `0` to disable. Note the hyphen for H.264. | -| slice-max-size | boolean | ✓ | | Set the maximum slice size for H.264 encoding in bytes. | +| slice-max-size | boolean | ✓ | | Sets the maximum slice size for H.264 encoding in bytes. | | vbv-bufsize | boolean | ✓ | ✓ | Sets the size of the VBV buffer in bytes per second. | | vbv-maxrate | boolean | ✓ | ✓ | Sets the maximum rate the VBV buffer should be assumed to refill at, in bytes per second. | | max-frame-delay | int | ✓ | ✓ | The maximum frame delay count is the maximum number of frames that a compressor is allowed to hold before it must output a compressed frame. |