fixed double commas with audio params

pull/702/head
Luke Pulverenti 12 years ago
parent cb3089791e
commit 2bdd9cc1f2

@ -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;
}

@ -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;
}

Loading…
Cancel
Save