1
在Android中,SoundPool.play
API允許播放聲音效果。我想知道應該怎麼改變參數以實現多普勒效應:Android中的多普勒/合成效果?
public final int play (
int soundID,
float leftVolume,
float rightVolume,
int priority,
int loop,
float rate)
您可能無法使用SoundPool做到這一點。您可能必須使用[AudioTrack]自己計算並寫入原始PCM數據(http://developer.android.com/reference/android/media/AudioTrack.html) – Tim