[ 
https://issues.apache.org/jira/browse/CB-4813?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13844660#comment-13844660
 ] 

Alberto Pettarin commented on CB-4813:
--------------------------------------

I confirm. To make the seekTo() working as expected, even before the first 
play(), you need to patch AudioPlayer.java in the following way:

1. change this.setState(STATE.MEDIA_STARTING); into 
this.setState(STATE.MEDIA_LOADING); inside the loadAudioFile() method;

2. add this.setState(STATE.MEDIA_STARTING); before 
this.seekToPlaying(this.seekOnPrepared); inside the onPrepared() method.

(disregard my previous suggestion of commenting out this.seekOnPrepared = 0;  
it was "working", but not the right way to go)

> Media.seekTo on first play. Again
> ---------------------------------
>
>                 Key: CB-4813
>                 URL: https://issues.apache.org/jira/browse/CB-4813
>             Project: Apache Cordova
>          Issue Type: Bug
>          Components: Plugin Media
>    Affects Versions: 2.7.0, 2.9.0, 3.0.0
>         Environment: Mac OS X
>            Reporter: Snr
>
> It is impossible to use Media.seekTo before the sound is played the first 
> time.
> There was the same issue previously which was fixed in 2.1.0: 
> https://issues.apache.org/jira/browse/CB-403
> However, I still can replicate the problem: the sound always starts playing 
> from the beginning of the file.
> var audio = new Media("data/q.mp3",function(){},function(){},function(){});
> audio.seekTo(30000);
> audio.play();



--
This message was sent by Atlassian JIRA
(v6.1.4#6159)

Reply via email to