diff options
| author | Claus Vium <cvium@users.noreply.github.com> | 2020-11-20 08:17:05 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-11-20 08:17:05 +0100 |
| commit | 84fe0462266c377caa2dcc5a919230cab0fe694c (patch) | |
| tree | 8e2ed75e7e96f6c11b064a11254e722cc907874d /MediaBrowser.Model/Configuration/EncodingOptions.cs | |
| parent | 8b23c4e241f33b65a2b5013e849d09d40bf41f2a (diff) | |
| parent | 44ff7a48436123e7290c576e2ca97c400e9f0ffa (diff) | |
Merge pull request #4432 from nyanmisaka/fmp4-hls
Add initial support for HEVC over FMP4-HLS
Diffstat (limited to 'MediaBrowser.Model/Configuration/EncodingOptions.cs')
| -rw-r--r-- | MediaBrowser.Model/Configuration/EncodingOptions.cs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Configuration/EncodingOptions.cs b/MediaBrowser.Model/Configuration/EncodingOptions.cs index c34825667..100756c24 100644 --- a/MediaBrowser.Model/Configuration/EncodingOptions.cs +++ b/MediaBrowser.Model/Configuration/EncodingOptions.cs @@ -67,6 +67,8 @@ namespace MediaBrowser.Model.Configuration public bool EnableHardwareEncoding { get; set; } + public bool AllowHevcEncoding { get; set; } + public bool EnableSubtitleExtraction { get; set; } public string[] HardwareDecodingCodecs { get; set; } @@ -99,6 +101,7 @@ namespace MediaBrowser.Model.Configuration EnableDecodingColorDepth10Hevc = true; EnableDecodingColorDepth10Vp9 = true; EnableHardwareEncoding = true; + AllowHevcEncoding = true; EnableSubtitleExtraction = true; HardwareDecodingCodecs = new string[] { "h264", "vc1" }; } |
