Following along with the video can be difficult. Setting the playback speed to .75x or .5x can help. Add closed captioning. Additionally, rewinding the video 5 to 10 secs when you miss something. Quick rewind is not implemented here, so we luckily get to do it ourselves!
Using chrome dev tools add this code to the console
document.addEventListener('keydown', function (event) {
if (event.code === 'ArrowLeft') {
const video = document.getElementById('vjs_video_3_html5_api');
if (video) {
video.currentTime -= 5;
}
}
});
Now you can use the left arrow key to rewind 5 secs! This is the first time I’ve ever done something like this, and I’m autisticHandFlapping.png that it worked.