GiraffePlayer icon indicating copy to clipboard operation
GiraffePlayer copied to clipboard

How Stop Definitely The Video?

Open TuxRneR opened this issue 9 years ago • 6 comments

Hello, some way to Stop Definitely the video when the video is playing?. I want to stop, not paused.

TuxRneR avatar Sep 14 '16 00:09 TuxRneR

player.stop()

tcking avatar Sep 14 '16 03:09 tcking

It's working, thanks. Do you know any way, to get out the image of player when I stopped? Look, I playing a video, but when I stop definitely the image of current video playing stay here :/, I want show the player in black. Thanks

TuxRneR avatar Sep 14 '16 04:09 TuxRneR

not support yet

tcking avatar Sep 14 '16 05:09 tcking

Is there any way to resume the same video

mwshubham avatar Sep 20 '17 09:09 mwshubham

call start() to resume when called pause()

tcking avatar Sep 20 '17 10:09 tcking

cool i didn't check the method

private boolean isInPlaybackState() {
        return (mMediaPlayer != null &&
                mCurrentState != STATE_ERROR &&
                mCurrentState != STATE_IDLE &&
                mCurrentState != STATE_PREPARING);
    }

i thought it will not resume even in pause state. Thanks

mwshubham avatar Sep 20 '17 10:09 mwshubham