Formatting Video Time and Duration

Formatting Video Time and Duration

I'm wondering if anyone can help convert the following to display in HH:MM:SS

  1. setInterval(function(){
  2. $('#currentTime').html($('.item').find('video').get(0).currentTime);
  3. $('#totalTime').html($('.item').find('video').get(0).duration);    
  4. },500)
Its been driving me nuts for about 2 hours now and I'm not finding much on google that helps =(