Rewind Button

Video Player is loading.
Advertisement
Current Time 0:00
Duration -:-
Loaded: 0%
Stream Type LIVE
Remaining Time -:-
1x
  • Chapters
  • descriptions off, selected
  • captions off, selected
    x
    ZOOM HELP
    Drag zoomed area using your mouse.
    100%

    Nuevo plugin features "Rewind" and "Forward" buttons to rewind or forward video 10 sconds in time.
    By default only forward button is enabled and displayed. To show/hide rewind and forward button you can use simple Nuevo plugin options.
    Check Nuevo plugin options code below.
    <script>
    <!--Initialize player + nuevo and hotkeys plugins-->
    	var player = videojs('player_1');
    	player.nuevo({ 
    		title: "Nuevo plugin for VideoJs Player",
    		buttonForward: true
    	}); 
    </script>
    

    Rewind button is enabled by default, to disable it set appropriate option to false.
    <script>
    	player.nuevo({ 
    		buttonRewind: false
    	});
    </script>
    

    Rewind and Forward time value is 10 seconds by default. It is possible to define other than "10" time value. In example below Rewind/Forward time value is set to 20 seconds.
    <script>
    <!--Initialize player + nuevo and hotkeys plugins-->
    	var player = videojs('player_1');
    	player.nuevo({ 
    		buttonForward: true,
    		rewindforward:20
    	}); 
    </script>
    
    Video Player is loading.
    Advertisement
    Current Time 0:00
    Duration -:-
    Loaded: 0%
    Stream Type LIVE
    Remaining Time -:-
    1x
    • Chapters
    • descriptions off, selected
    • captions off, selected
      x
      ZOOM HELP
      Drag zoomed area using your mouse.
      100%