Introduction
The Seek Buttons are a feature of Brightcove Player. They allow the user to seek forward/back through a video for configurable amounts of time, those being 5, 10 or 30 seconds.
The seek buttons appear in the left side of the control bar.
Configure using Players module
In Video Cloud Studio, configure the player manually to enable this function:
- Open the PLAYERS module and either create a new player or locate the player to which you wish to add the plugin.
- Click the link for the player to open the player's properties.
-
Expand the JSON Editor section on the Overview tab.
-
In the JSON Editor, add a property called
skip_buttons.To configure the player to have forward and backward seek buttons, define the
skip_buttonsproperty as follows:"skip_buttons": { "forward": 10, "backward": 10 }You can also configure the player only to have one seek button by defining
skip_buttonsas follows:-
Only a forward seek button:
"skip_buttons": { "forward": 10 } -
Only a backward seek button:
"skip_buttons": { "backward": 10 }
-
- Click Save and then, publish your player.