我正在尝试更改/操纵录制的声音。我的目标是让声音听起来更高或更低(音高),给定一个特定的值。
我目前正在使用 react-native-sound:
const soundfile = new SoundPlayer(filePath, '', (error) => {
if (error) {
// do sth
return;
}
soundfile.play();
});
除了这个 MR 之外,我没有发现任何有用的东西:https ://github.com/zmxv/react-native-sound/pull/466/files 而这个只是 Android,甚至在 master 中也没有。谁能指出我正确的方向(可能仍然类似于 Swift 的 AVAudioEngine)?