Hi i want to know how to define the seconds into hours and minutes for the media player timer i have already done it in seconds but not sure how to hours and minute. Pls help!
Code:
ef onTimer(self,event): current = self.mc.Tell() self.info_pos.SetLabel(" %i seconds" % (int(current)/1000)) self.slider.SetValue(current)
Comment