aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2013-03-24 18:45:53 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2013-03-24 18:45:53 -0400
commit2bdd9cc1f2aee5863134f65ee0b8cf98f44cc582 (patch)
treecf224a5298a84bea09c756d7f68e4030d296f3f4
parentcb3089791e5f7d13056ed247faa415da58d1a00b (diff)
fixed double commas with audio params
-rw-r--r--MediaBrowser.Api/Playback/Hls/VideoHlsService.cs2
-rw-r--r--MediaBrowser.Api/Playback/Progressive/VideoService.cs2
2 files changed, 2 insertions, 2 deletions
diff --git a/MediaBrowser.Api/Playback/Hls/VideoHlsService.cs b/MediaBrowser.Api/Playback/Hls/VideoHlsService.cs
index 130a3c575..699d45de3 100644
--- a/MediaBrowser.Api/Playback/Hls/VideoHlsService.cs
+++ b/MediaBrowser.Api/Playback/Hls/VideoHlsService.cs
@@ -92,7 +92,7 @@ namespace MediaBrowser.Api.Playback.Hls
volParam = ",volume=2.000000";
}
- args += string.Format(" -af \"aresample=async=1000,{0}\"", volParam);
+ args += string.Format(" -af \"aresample=async=1000{0}\"", volParam);
return args;
}
diff --git a/MediaBrowser.Api/Playback/Progressive/VideoService.cs b/MediaBrowser.Api/Playback/Progressive/VideoService.cs
index c0f3fd689..7992948d2 100644
--- a/MediaBrowser.Api/Playback/Progressive/VideoService.cs
+++ b/MediaBrowser.Api/Playback/Progressive/VideoService.cs
@@ -217,7 +217,7 @@ namespace MediaBrowser.Api.Playback.Progressive
volParam = ",volume=2.000000";
}
- args += string.Format(" -af \"aresample=async=1000,{0}\"", volParam);
+ args += string.Format(" -af \"aresample=async=1000{0}\"", volParam);
return args;
}