Forum Discussion

SaadSiddiqui-4f's avatar
SaadSiddiqui-4f
Community Member
5 years ago

Using JavaScript to change the playback rate of Audio and Video

I'm using the following code to provide variable playback speed in the course. var player = GetPlayer(); var x = document.getElementsByTagName('video')[0]; x.playbackRate = 2.0;   The code...