Videojs speed rates

Video.js features an optional display of the speed rate menu. Using the Nuevo plugin, the speed rates menu is populated from the Settings menu. The default speed rates that users can switch between are: 0.5, 0.75, 1, 1.25, 1.5, and 2.
With the Nuevo plugin, it is possible to define a completely custom set of speed rates. The plugin simply accepts the 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. The player setup code is as follows:
Code snippet
var player = videojs ("my_player_id", { playbackRates: [0.5,1,1.5,2,3,4] });