Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cannot resume video player when stream url reconnect #40

Open
kimnamcham opened this issue Dec 5, 2017 · 0 comments
Open

Cannot resume video player when stream url reconnect #40

kimnamcham opened this issue Dec 5, 2017 · 0 comments

Comments

@kimnamcham
Copy link

This is my code to handle video player when stream url reconnect. When i click play video on media controller, video player cannot resume:

mVideoView.setOnErrorListener(new MediaPlayer.OnErrorListener() {
@OverRide
public boolean onError(MediaPlayer mediaPlayer, int i, int i1) {
position = mediaPlayer.getCurrentPosition();
mMediaController.hideError();
mVideoView.stopPlayback();
return true;
}
});
mVideoView.setOnPreparedListener(new MediaPlayer.OnPreparedListener() {
@OverRide
public void onPrepared(MediaPlayer mediaPlayer) {
if (position > 0) {
mediaPlayer.seekTo(position);
}
}
});

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant