Pārlūkot izejas kodu

reduce remote stream buffer time

Luke Pulverenti 11 gadi atpakaļ
vecāks
revīzija
8369f16d66
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  1. 1 1
      MediaBrowser.Api/Playback/BaseStreamingService.cs

+ 1 - 1
MediaBrowser.Api/Playback/BaseStreamingService.cs

@@ -759,7 +759,7 @@ namespace MediaBrowser.Api.Playback
             // This is arbitrary, but add a little buffer time when internet streaming
             if (state.IsRemote)
             {
-                await Task.Delay(4000).ConfigureAwait(false);
+                await Task.Delay(3000).ConfigureAwait(false);
             }
         }