React native 俯仰(高/低)声音与反应本机声音

React native 俯仰(高/低)声音与反应本机声音,react-native,avaudioengine,react-native-sound,React Native,Avaudioengine,React Native Sound,我正试图改变/操纵录制的声音。我的目标是使声音听起来更高或更低(调高它),给定一个特定的值 我目前正在使用react native sound: const soundfile = new SoundPlayer(filePath, '', (error) => { if (error) { // do sth return; } soundfile.

我正试图改变/操纵录制的声音。我的目标是使声音听起来更高或更低(调高它),给定一个特定的值

我目前正在使用react native sound:

const soundfile  = new SoundPlayer(filePath, '', (error) => {
            if (error) {
                // do sth
                return;
            }

            soundfile.play();
        });
我没有发现任何有用的东西,除了这个先生: 这是一个只有安卓系统,甚至不在主机中。 有人能给我指出正确的方向吗(也许仍然类似于斯威夫特的AVAudioEngine)