Is it possible to rewind/forward in an audio player?

You must Login before you can answer or comment on any questions.

I've searched the docs and so far I am only able to check the progress of the audio. However I want to be able to change the progress (i.e add rewind and forward functionalities to my application). Is it possible or perhaps a hackish way to do it?

1 Answer

On android, I use the Advanced Audio Player module.

On iOS, I use the movieplayer.

— answered 8 months ago by Stephen Feather
answer permalink
3 Comments
  • iphone/classes/TiMediaVideoPlayerProxy.m:

    -(void)setCurrentPlaybackTime:(id)value
    {
        movie.currentPlaybackTime=[TiUtils doubleValue:value];
     
    }

    — commented 8 months ago by Stephen Feather

  • @Stephen is that the tweak that we have to apply on TiMediaVideoPlayerProxy.m

    — commented 8 months ago by Ajeet pratap Maurya

  • Place near the bottom before the @end

    — commented 8 months ago by Stephen Feather

Your Answer

Think you can help? Login to answer this question!