Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Change the video playback speed using video.js

Is there any existing plugin to change the playback rate of a video using the video.js player? If not, how can I add the new plugin and the new control button for the same?

Thanks in advance.

like image 799
Aditya Avatar asked Oct 01 '13 09:10

Aditya


1 Answers

I've the same issue. I just found that:

videojs('my-player', {
  playbackRates: [0.5, 1, 1.5, 2]
});

see videojs docs

like image 175
Chris Avatar answered Oct 11 '22 10:10

Chris