fixed double commas with audio params

This commit is contained in:
Luke Pulverenti 2013-03-24 18:45:53 -04:00
parent cb3089791e
commit 2bdd9cc1f2
2 changed files with 2 additions and 2 deletions

View file

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

View file

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