如何在 Android 中提高 mp3 速度(启用并提高速率)

How to increate mp3 speed (enable and increase the rate) in Android

如何使用 Android 中的音频播放器提高或降低 mp3 的速度?

iOS 有以下代码来增加或减少速度。 _noticeAudio = [[AVAudioPlayer alloc] initWithContentsOfURL:[NSURL fileURLWithPath:[[NSBundle mainBundle] pathForResource:@"Rooster-mono" ofType:@"wav"]] error:nil];; if ([_noticeAudio respondsToSelector:@selector(setEnableRate:)]) _noticeAudio.enableRate = YES; if ([_noticeAudio respondsToSelector:@selector(setRate:)]) _noticeAudio.rate = 2.0;

我怎样才能在 Android 中实现同样的效果?

从查询中找到解决方案 (How to slow down and stretch audio in Android?)

使用了

android.media.SoundPool

实现mp3音频的速率。