diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-08-31 10:54:58 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-08-31 10:54:58 -0400 |
| commit | 87d77cdb95aae20ebeed3d0e552344f1e76d3ccd (patch) | |
| tree | 2f4d1de3021d0436527c0cc09155d827d7370e3a | |
| parent | 744867d1c6e0f352276d8fdd8af241ff88c03494 (diff) | |
further adjusted bufsize
| -rw-r--r-- | MediaBrowser.Api/Playback/Hls/VideoHlsService.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Api/Playback/Hls/VideoHlsService.cs b/MediaBrowser.Api/Playback/Hls/VideoHlsService.cs index 0c7af3c66..9156898fa 100644 --- a/MediaBrowser.Api/Playback/Hls/VideoHlsService.cs +++ b/MediaBrowser.Api/Playback/Hls/VideoHlsService.cs @@ -193,7 +193,7 @@ namespace MediaBrowser.Api.Playback.Hls if (bitrate.HasValue) { - args += string.Format(" -b:v {0} -maxrate {0} -minrate {0} -bufsize ({0}/3)*2", bitrate.Value.ToString(UsCulture)); + args += string.Format(" -b:v {0} -maxrate {0} -minrate {0} -bufsize ({0}/10)", bitrate.Value.ToString(UsCulture)); } // Add resolution params, if specified |
