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
const player = videojs ("my_player", { license: "key", playbackRates: [0.5,1,1.5,2,3,4] });