diff options
| author | nicknsy <20588554+nicknsy@users.noreply.github.com> | 2023-02-23 16:04:35 -0800 |
|---|---|---|
| committer | Nick <20588554+nicknsy@users.noreply.github.com> | 2023-06-22 16:19:59 -0700 |
| commit | 31a858f52030df85001382ae584e34edb11839ac (patch) | |
| tree | cb1f5e55e4cd9a4017b0ce72d2227ef2a948dc0e /MediaBrowser.Model/Configuration | |
| parent | b18d6bd3562a5e5a69f806b461049fbf9f61b70e (diff) | |
IsAutomated not set on copy
Diffstat (limited to 'MediaBrowser.Model/Configuration')
| -rw-r--r-- | MediaBrowser.Model/Configuration/EncodingOptions.cs | 6 | ||||
| -rw-r--r-- | MediaBrowser.Model/Configuration/LibraryOptions.cs | 4 |
2 files changed, 4 insertions, 6 deletions
diff --git a/MediaBrowser.Model/Configuration/EncodingOptions.cs b/MediaBrowser.Model/Configuration/EncodingOptions.cs index e1d9e00b7..2990cedcd 100644 --- a/MediaBrowser.Model/Configuration/EncodingOptions.cs +++ b/MediaBrowser.Model/Configuration/EncodingOptions.cs @@ -48,7 +48,6 @@ public class EncodingOptions EnableIntelLowPowerH264HwEncoder = false; EnableIntelLowPowerHevcHwEncoder = false; EnableHardwareEncoding = true; - EnableTrickplayHwAccel = false; AllowHevcEncoding = false; AllowMjpegEncoding = false; EnableSubtitleExtraction = true; @@ -247,11 +246,6 @@ public class EncodingOptions public bool EnableHardwareEncoding { get; set; } /// <summary> - /// Gets or sets a value indicating whether hardware acceleration is enabled for trickplay generation. - /// </summary> - public bool EnableTrickplayHwAccel { get; set; } - - /// <summary> /// Gets or sets a value indicating whether HEVC encoding is enabled. /// </summary> public bool AllowHevcEncoding { get; set; } diff --git a/MediaBrowser.Model/Configuration/LibraryOptions.cs b/MediaBrowser.Model/Configuration/LibraryOptions.cs index df6829946..7718f822b 100644 --- a/MediaBrowser.Model/Configuration/LibraryOptions.cs +++ b/MediaBrowser.Model/Configuration/LibraryOptions.cs @@ -36,6 +36,10 @@ namespace MediaBrowser.Model.Configuration public bool ExtractChapterImagesDuringLibraryScan { get; set; } + public bool EnableTrickplayImageExtraction { get; set; } + + public bool ExtractTrickplayImagesDuringLibraryScan { get; set; } + public MediaPathInfo[] PathInfos { get; set; } public bool SaveLocalMetadata { get; set; } |
