diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-10-23 15:59:54 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-10-23 15:59:54 -0400 |
| commit | 235b6c98eab20f6473c149dbd5e7b0ecc08ec302 (patch) | |
| tree | 77d83aeb692ea05b4cb32b462c28accee2a50e59 | |
| parent | 73dcf0f2e87c7ced658c8564c583e4158a31169b (diff) | |
removed audio sync
| -rw-r--r-- | MediaBrowser.Api/Playback/Hls/VideoHlsService.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/MediaBrowser.Api/Playback/Hls/VideoHlsService.cs b/MediaBrowser.Api/Playback/Hls/VideoHlsService.cs index 970185394..2f1ba9c5d 100644 --- a/MediaBrowser.Api/Playback/Hls/VideoHlsService.cs +++ b/MediaBrowser.Api/Playback/Hls/VideoHlsService.cs @@ -96,10 +96,10 @@ namespace MediaBrowser.Api.Playback.Hls // Boost volume to 200% when downsampling from 6ch to 2ch if (channels.HasValue && channels.Value <= 2 && state.AudioStream.Channels.HasValue && state.AudioStream.Channels.Value > 5) { - volParam = ",volume=2.000000"; + volParam = "volume=2.000000"; } - args += string.Format(" -af \"aresample=async=1000{0}\"", volParam); + args += string.Format(" -af \"{0}\"", volParam); return args; } |
