You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is There a way that the user can change the playback speed of the player ?
i saw in the docs that in pure javascript it is something like this
jwplayer('user-player').setup({playlist: 'https://cdn.jwplayer.com/v2/media/gaCRFWjn',// Set the available playback rates of your choiceplaybackRateControls: [0.75,1,1.25,1.5]});
but i couldn't find how to do it in jwplayer-react
The text was updated successfully, but these errors were encountered:
You should be able to use customProps to set playbackRateControls. Like this: <ReactJWPlayer customProps={{ playbackRateControls: [0.75, 1, 1.25, 1.5] }} />
Is There a way that the user can change the playback speed of the player ?
i saw in the docs that in pure javascript it is something like this
but i couldn't find how to do it in jwplayer-react
The text was updated successfully, but these errors were encountered: