如何使用java更改音频声音片段的频率。我可以用什么样的api?
答案 0 :(得分:1)
在这里有答案Changing Pitch and Frequency of Recorded Audio
mAudioManager = (AudioManager) context.getSystemService(Context.AUDIO_SERVICE);
mSoundPool = new SoundPool(size, AudioManager.STREAM_MUSIC, 0);
mSoundPoolMap = new HashMap<Integer, Integer>();
mSoundPoolMap.put(index, mSoundPool.load(context, R.raw.sound, 1));
mSoundPool.play(id, streamVolume, streamVolume, 1, loop, 1f);
频率是1f部分。如果将其更改为.5f和2.0f之间的值,则应减慢或加快样本速度,从而改变音高。