如何在Android中增加mp3速度(启用和提高速率)

时间:2015-07-27 08:28:24

标签: android mp3 android-audiomanager

如何使用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中实现相同目标?

1 个答案:

答案 0 :(得分:0)

从查询(How to slow down and stretch audio in Android?

中找到解决方案

使用

  

android.media.SoundPool

实现mp3音频的速度。