Merge pull request #654 from tikuf/master

Change audio sync (sync at start no corrections)
This commit is contained in:
Luke 2013-12-28 18:40:35 -08:00
commit 532296a9aa
2 changed files with 2 additions and 2 deletions

View file

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

View file

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