浏览代码

update subtitle extraction

Luke Pulverenti 9 年之前
父节点
当前提交
c68900eaad
共有 1 个文件被更改,包括 1 次插入8 次删除
  1. 1 8
      MediaBrowser.Server.Implementations/Library/MediaSourceManager.cs

+ 1 - 8
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)