aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Implementations/LiveTv
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2015-07-31 16:38:08 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2015-07-31 16:38:08 -0400
commita7b25c065c831804c701c44f30b277c9c7689ac3 (patch)
tree9a6ec8af764cefcb414dbc172804203cc7df908c /MediaBrowser.Server.Implementations/LiveTv
parent25395c5d82a9136253706a7fed5a552dcc452acd (diff)
update stream buffering
Diffstat (limited to 'MediaBrowser.Server.Implementations/LiveTv')
-rw-r--r--MediaBrowser.Server.Implementations/LiveTv/EmbyTV/EmbyTV.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Server.Implementations/LiveTv/EmbyTV/EmbyTV.cs b/MediaBrowser.Server.Implementations/LiveTv/EmbyTV/EmbyTV.cs
index c323f8e0dc..4430b94551 100644
--- a/MediaBrowser.Server.Implementations/LiveTv/EmbyTV/EmbyTV.cs
+++ b/MediaBrowser.Server.Implementations/LiveTv/EmbyTV/EmbyTV.cs
@@ -525,7 +525,7 @@ namespace MediaBrowser.Server.Implementations.LiveTv.EmbyTV
{
using (var output = File.Open(recordPath, FileMode.Create, FileAccess.Write, FileShare.Read))
{
- await response.Content.CopyToAsync(output, 4096, linkedToken);
+ await response.Content.CopyToAsync(output, 131072, linkedToken);
}
}