Browse Source

reduce remote stream buffer time

Luke Pulverenti 11 năm trước cách đây
mục cha
commit
8369f16d66
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  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);
             }
         }