
Duration differences
I am capturing the video duration using jwplayer().getDuration() function. The value i get in return is 119.52. I then convert it into minutes (119.52 / 60) = 1.992. But the video duration on the player is 1:59. This difference varies for different videos.
Similarly i also capture the current seek time using self.currenseektime on pause event. Here also if i pause the video at 71.16 seconds and convert it into minutes i6 (71.16 / 60) = 1.186. But the player shows 1:11 as current time
I need to capture the time displayed by the player. Is there anything basic i am missing in converting the time?