فهرست منبع

Merge branch 'master' of https://github.com/MediaBrowser/MediaBrowser

Luke Pulverenti 12 سال پیش
والد
کامیت
9edbc9ff8b
2فایلهای تغییر یافته به همراه2 افزوده شده و 2 حذف شده
  1. 1 1
      MediaBrowser.Api/Playback/Hls/VideoHlsService.cs
  2. 1 1
      MediaBrowser.Api/Playback/Progressive/VideoService.cs

+ 1 - 1
MediaBrowser.Api/Playback/Hls/VideoHlsService.cs

@@ -94,7 +94,7 @@ namespace MediaBrowser.Api.Playback.Hls
                     audioSampleRate = state.Request.AudioSampleRate.Value + ":";
                 }
 
-                args += string.Format(" -af \"adelay=1,aresample={0}async=1000{1}\"", audioSampleRate, volParam);
+                args += string.Format(" -af \"adelay=1,aresample={0}async=1{1}\"", audioSampleRate, volParam);
 
                 return args;
             }

+ 1 - 1
MediaBrowser.Api/Playback/Progressive/VideoService.cs

@@ -250,7 +250,7 @@ namespace MediaBrowser.Api.Playback.Progressive
                 AudioSampleRate = state.Request.AudioSampleRate.Value + ":";
             }
 
-            args += string.Format(" -af \"aresample={0}async=1000{1}\"", AudioSampleRate, volParam);
+            args += string.Format(" -af \"aresample={0}async=1{1}\"", AudioSampleRate, volParam);
 
             return args;
         }