Current location - Music Encyclopedia - QQ Music - Is there any audio playback software for Android that can speed up audio playback?
Is there any audio playback software for Android that can speed up audio playback?

1. Many mobile phone built-in software can be used, such as Huawei.

2. The double-speed playback function of Kugou Music can meet your needs, and the operation is relatively simple. Download the audio software locally, then open it with Kugou Music, and you can select double-speed playback. It supports WMA, MP3, and MIDI. CD. Listening and learning foreign languages ??can save a lot of time. It has a fast and slow playback function, and the tone will not change.

3. The astro player software seems to be inside the fuselage. It does not need to be downloaded. Then it plays the audio in accelerated mode. Just turn on the play button and long press to enter the settings. You can play it quickly. You can also play it slowly.

4. MediaPlayer, starting from Android API 23 (Android M), MediaPlayer supports adjusting the playback speed.

The method used is setPlaybackParams, passing in a class PlaybackParams that represents the playback attribute.

How to use MediaPlayer:

The playback speed is set in the PlaybackParams object, and then this object is passed to setPlaybackParams.

setPlaybackParams is a native method.

If MediaPlayer is not prepared (before prepared), calling this method will not change the state of MediaPlayer.

After MediaPlayer successfully prepares, if the set speed is 0, it is equivalent to calling the pause method; if the set speed is not 0, it is equivalent to calling the start method.

Exception:

If MediaPlayer has not been initialized or has been released, that is, it is in the Idle or End state, calling the setPlaybackParams method will throw an IllegalStateException exception.

If the incoming PlaybackParams is not supported, an IllegalArgumentException is thrown.

If the set speed is less than 0, a java.lang.IllegalArgumentException is thrown.