Increase the Frame Rate by Reducing the Interval: reduce the setInterval delay to make frame transitions faster and smoother:
handle = setInterval(function () {
seekTime += 0.033; // 30 fps (1 second / 30)
seekToTime(seekTime);
}, 33); // Run every ~33ms
If this doesnt work for you, you will have to switch to canvas :(