Rewind functionality in Brightcove player

241 views Asked by At

In my app I implement the brightcove video player.
I am working on customizing brightcove.
I successfully implemented the play/pause option, and I am trying the same for the rewind option, but to no avail.

Here is my code

BrightcoveVideoView commonVideoView = (BrightcoveVideoView)view.findViewById(R.id.commonVideoViewId);
BrightcoveMediaController   mediaController = new BrightcoveMediaController(commonVideoView, R.layout.media_controllers);

How can I solve this issue?

1

There are 1 answers

0
Jiju Induchoodan On

You can use the seekTo method for achieving the same.

brightcoveVideoView.seekTo(value);