aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Configuration
diff options
context:
space:
mode:
authorCody Robibero <cody@robibe.ro>2024-07-17 12:28:58 -0400
committerGitHub <noreply@github.com>2024-07-17 12:28:58 -0400
commitc2074040891b525edeb5abe6f79103e15e217288 (patch)
tree279ff0c6d790a7cfc08c970c0a44058d7e2f7bc2 /MediaBrowser.Model/Configuration
parentb026772764a705e1ef49fa9b3be053f45a293968 (diff)
parente851bb869b0c9295372b6f9f47d78a4ea1401cea (diff)
Merge pull request #11511 from jellyfin/trickplay-keyframe-only
Diffstat (limited to 'MediaBrowser.Model/Configuration')
-rw-r--r--MediaBrowser.Model/Configuration/TrickplayOptions.cs6
1 files changed, 6 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Configuration/TrickplayOptions.cs b/MediaBrowser.Model/Configuration/TrickplayOptions.cs
index a151d3429..578bb306a 100644
--- a/MediaBrowser.Model/Configuration/TrickplayOptions.cs
+++ b/MediaBrowser.Model/Configuration/TrickplayOptions.cs
@@ -19,6 +19,12 @@ public class TrickplayOptions
public bool EnableHwEncoding { get; set; } = false;
/// <summary>
+ /// Gets or sets a value indicating whether to only extract key frames.
+ /// Significantly faster, but is not compatible with all decoders and/or video files.
+ /// </summary>
+ public bool EnableKeyFrameOnlyExtraction { get; set; } = false;
+
+ /// <summary>
/// Gets or sets the behavior used by trickplay provider on library scan/update.
/// </summary>
public TrickplayScanBehavior ScanBehavior { get; set; } = TrickplayScanBehavior.NonBlocking;