Speed Selection Adds support for playback speed selection. Table of contents Installation Async cloud player installation Configuration Sample code Demo Installation Load the speed plugin next to the core player. <script src="//cdn.flowplayer.com/releases/native/stable/flowplayer.min.js"></script> <script src="//cdn.flowplayer.com/releases/native/stable/plugins/speed.min.js"></script> Player and plugins exist in different release versions. Please see the release channel documentation. Async cloud player installation To enable the plugin in the async cloud player, declare it in the "plugins": [] config object with comscore . Configuration The plugin is configured in top level configuration under speed namespace. Properties: option description default options array Array of speed factors where 1 is normal speed. [0.2, 0.5, 1, 2, 10]. labels array Array of speed labels. Indices match with options array. For each label {option}x Sample code var api = flowplayer('#container', { src: "//edge.flowplayer.org/bauhaus.mp4" , title: "Bauhaus" , speed: { options: [0.5, 1, 2] , labels: ["Slow","Normal", "Fast"] } } ) Demo codepen
Speed Selection Adds support for playback speed selection. Table of contents Installation Async cloud player installation Configuration Sample code Demo Installation Load the speed plugin next to the core player. <script src="//cdn.flowplayer.com/releases/native/stable/flowplayer.min.js"></script> <script src="//cdn.flowplayer.com/releases/native/stable/plugins/speed.min.js"></script> Player and plugins exist in different release versions. Please see the release channel documentation. Async cloud player installation To enable the plugin in the async cloud player, declare it in the "plugins": [] config object with comscore . Configuration The plugin is configured in top level configuration under speed namespace. Properties: option description default options array Array of speed factors where 1 is normal speed. [0.2, 0.5, 1, 2, 10]. labels array Array of speed labels. Indices match with options array. For each label {option}x Sample code var api = flowplayer('#container', { src: "//edge.flowplayer.org/bauhaus.mp4" , title: "Bauhaus" , speed: { options: [0.5, 1, 2] , labels: ["Slow","Normal", "Fast"] } } ) Demo codepen