diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-11-06 09:57:36 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-11-06 09:57:36 -0500 |
| commit | c68900eaad2c155c2bfb6bb6391dada6666a36ef (patch) | |
| tree | 140545eaf1a337cd8c6e0058603986c713cc70fd | |
| parent | 612409acffb9bfcffec53503a7723bc69e07187e (diff) | |
update subtitle extraction
| -rw-r--r-- | MediaBrowser.Server.Implementations/Library/MediaSourceManager.cs | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/MediaBrowser.Server.Implementations/Library/MediaSourceManager.cs b/MediaBrowser.Server.Implementations/Library/MediaSourceManager.cs index 9694965c7..8afab39aa 100644 --- a/MediaBrowser.Server.Implementations/Library/MediaSourceManager.cs +++ b/MediaBrowser.Server.Implementations/Library/MediaSourceManager.cs @@ -107,14 +107,7 @@ namespace MediaBrowser.Server.Implementations.Library private int GetMaxAllowedBitrateForExternalSubtitleStream() { - // This is abitrary but at some point it becomes too slow to extract subtitles on the fly - // We need to learn more about when this is the case vs. when it isn't - if (Environment.ProcessorCount >= 8) - { - return 10000000; - } - - return 2000000; + return 20000000; } private IEnumerable<MediaStream> GetMediaStreamsForItem(IEnumerable<MediaStream> streams) |
