From f5ffd6ff0ffbd0f9eb02eaeb87115ef20f4ce392 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Sat, 7 Sep 2013 11:59:00 -0400 Subject: [PATCH] adjust static stream buffer size --- MediaBrowser.Api/Playback/StaticRemoteStreamWriter.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MediaBrowser.Api/Playback/StaticRemoteStreamWriter.cs b/MediaBrowser.Api/Playback/StaticRemoteStreamWriter.cs index 227bd954ab..8c9815134a 100644 --- a/MediaBrowser.Api/Playback/StaticRemoteStreamWriter.cs +++ b/MediaBrowser.Api/Playback/StaticRemoteStreamWriter.cs @@ -66,7 +66,7 @@ namespace MediaBrowser.Api.Playback { using (var remoteStream = await _msg.Content.ReadAsStreamAsync().ConfigureAwait(false)) { - await remoteStream.CopyToAsync(responseStream, 8192000).ConfigureAwait(false); + await remoteStream.CopyToAsync(responseStream, 819200).ConfigureAwait(false); } } }