Videojs speed rates

About speed rates in Video.js with Nuevo plugin

Video.js features an optional display of the speed rates menu. Using Nuevo plugin speed rates menu is populated from the Settings Menu. Default speed rates that user can switch between are: 0.5, 0.75, 1, 1.25. 1.5 and 2.
From version 8.5.0 of the Nuevo plugin it is possible to define a completely custom set of speed rates. The plugin simply accepts video.js playbackRates option, which is an array of custom speed rates. In the video example above custom speed rates are: 0.5, 1, 1.5, 2, 3 and 4. And video.js setup is as follows:
Code snippet
var player = videojs ("my_player_id", { playbackRates: [0.5,1,1.5,2,3,4] });
It's easy.