Good evening (night/morning/day)!
First I do this:
var audioObject = new Audio("sound.wav");
audioObject.play();
And it really play music. then I do this:
audioObject.pause();
alert(audioObject.currentTime);
And it show me time offset when I set pause. But when I try to do something like this:
audioObject.currentTime = 0;
it raise exception INDEX_SIZE_ERR. When I do
alert(audioObject.seekable.length);
it show me 0.
Please, tell me how I can change position of playing sound.
I try to do it using WebKit engine (QtWebKit).
P.S. Sorry for my English