I made a custom video controller where I want to be able to seek by dragging the marker the seek bar. In my desktop chrome browser I get a smooth(ish) playback of the current video position as I drag the slider around. On my Android device (in a Webview on a hybrid app) the video position doesn't update until I release the slider.
I took this further by making my own slider so that I could control the input to the video elements currentTime
setter. I found that if I rounded the input to an integer value I would get live updates as I dragged my own slider around. But of course, they were not smooth at all as it jumps between integer seconds.
Anyone got ideas?