Peter
Peter

Reputation: 11920

Android SDK - How to play audio at reduced speed?

How can I play an mp3 at half speed? I don't see any helper method in MediaPlayer class.

Upvotes: 1

Views: 1528

Answers (1)

LeffelMania
LeffelMania

Reputation: 12885

The MediaPlayer does not provide access to the playback rate. However, SoundPool does. Take a look at that class and if it suits your needs, problem solved.

http://developer.android.com/reference/android/media/SoundPool.html

Upvotes: 4

Related Questions