Hello Developers,
I have simple media player that have slider that runs in sync with the song. When I want to move a song on given position using slider it moves slowly with strange gagging sound while other media player like foo/win' media player when you move song to a position it moves there instantly. How dod you do that with wx.Media??
def onPlay(self, evt):
self.player.Play()
self.slider.SetRange(0, self.player.Length())
self.player.SetVolume(0.404459081855)
volume = str(self.player.GetVolume())
self.label.SetLabel("Vol: %s" %(volume,))