Videojs Rewind & Forward

The Nuevo plugin features Rewind and Forward buttons. Both buttons allow you to seek 10 seconds back or forward in the video. By default, only Rewind button is enabled. There are simple options to enable a Forward button or disable one or both buttons.

Rewind Button Forward Button

Code snippet
<script>
var player = videojs('example_video_1');
player.nuevo({ buttonRewind: true, (default)
buttonForward: false (default)});
</script>
It is possible to set other than 10 seconds value for rewind and forward functions. Allowed values are 5, 10, 20, or 30 seconds.
Code snippet
player.nuevo({ rewindforward: 30 })
On touch-devices Rewind and Forward buttons are presented as big icons centered on the screen instead of small buttons in the control bar. The user may hide these buttons in the Nuevo plugin configuration:
Code snippet
player.nuevo({ touchRewindForward: false })