Browse Source

reduce remote stream buffer time

Luke Pulverenti 11 years ago
parent
commit
8369f16d66
1 changed files with 1 additions and 1 deletions
  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);
             }
         }