One of the missing features from the WWDC video player is it doesn't have playback rate control. So, here is a simple script to change the playback rate of WWDC Videos -
document.querySelector("video").playbackRate = 1.5
Run this script in your web browser console.