You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I'm using v0.7.5. It generally works well but atleast once or twice as media is playing back, the sound glitches/breaks/clips temporarily then goes back to normal after some seconds. Is there a way to fix this? my code:
`
options |= OpenSLMediaPlayerContext.OPTION_USE_BASSBOOST;
options |= OpenSLMediaPlayerContext.OPTION_USE_VIRTUALIZER;
options |= OpenSLMediaPlayerContext.OPTION_USE_HQ_EQUALIZER;
options |= OpenSLMediaPlayerContext.OPTION_USE_PREAMP;
options |= OpenSLMediaPlayerContext.OPTION_USE_HQ_VISUALIZER;
options |= OpenSLMediaPlayerContext.RESAMPLER_QUALITY_HIGH;
params = new OpenSLMediaPlayerContext.Parameters();
params.useLowLatencyIfAvailable = true;
params.streamType = AudioManager.STREAM_MUSIC;
params.options = options;
playerFactory= new HybridMediaPlayerFactory(this, params) {
@Override
protected int getMediaPlayerOptions () {
return 0;
}
};
mPlayer= playerFactory.createMediaPlayer();`
The text was updated successfully, but these errors were encountered:
Hi, I'm using v0.7.5. It generally works well but atleast once or twice as media is playing back, the sound glitches/breaks/clips temporarily then goes back to normal after some seconds. Is there a way to fix this? my code:
`
options |= OpenSLMediaPlayerContext.OPTION_USE_BASSBOOST;
options |= OpenSLMediaPlayerContext.OPTION_USE_VIRTUALIZER;
options |= OpenSLMediaPlayerContext.OPTION_USE_HQ_EQUALIZER;
options |= OpenSLMediaPlayerContext.OPTION_USE_PREAMP;
options |= OpenSLMediaPlayerContext.OPTION_USE_HQ_VISUALIZER;
options |= OpenSLMediaPlayerContext.RESAMPLER_QUALITY_HIGH;
The text was updated successfully, but these errors were encountered: