I am developing spotify third party application using javascript API. I am trying to play the track from certain position. I am having following code,
player.position = 50000; player.play(track);
But this code plays track from begining. I want to play the track from certain position. Is there any way to play track from certain position? Thanks.