Basically it fires the seeked event and seeking is false, but it did not render the video yet.
We need to force the video to be actually drawn. It currently only does that once I stop scrolling (which is faked, so it's not an issue with scroll/touchmove events blocking it). I guess Chrome will only upload the video to the GPU (we translate all elements) once it does not move anymore.
Basically it fires the
seeked
event andseeking
is false, but it did not render the video yet.We need to force the video to be actually drawn. It currently only does that once I stop scrolling (which is faked, so it's not an issue with scroll/touchmove events blocking it). I guess Chrome will only upload the video to the GPU (we translate all elements) once it does not move anymore.