Name is required.
Email address is required.
Invalid email address
Answer is required.
Exceeding max length of 5KB

speed


how can i adjust speed of video on my code ?, jwplayer seem like removed playback rate api :((

1 Community Answers

Donni

JW Player Support Agent  
0 rated :

We removed the demo from the website, but we never had built-in api controls for playback speed. You would need to utilize HTML5’s playbackRate Property and our javascript API in order to accomplish that task. Below is a demo of a button on a player that would increase playback speed.

jwplayer().addButton("LINK TO AN ICON", "Fast", function() {
        jwplayer().seek(jwplayer().getPosition());
        tag.playbackRate = 3.0;
     },"high");

Hope this helps!

This question has received the maximum number of answers.