I'm developing a player in Html5. I'm in the part where I need to display the total duration time and the current time. But I only know how to get the values through the float.
Example
console.log(video.duration); // 6605
console.log(video.currentTime); // 0.855
Does html5 offer some property or function where I can get these values in hh:mm:ss
format?