Оформить заказ на следующую библиотеку npm:
https://github.com/jsierles/react-native-audio
Простой пример использования этого модуля.
import {AudioRecorder, AudioUtils} from 'react-native-audio';
let audioPath = AudioUtils.DocumentDirectoryPath + '/test.aac';
AudioRecorder.prepareRecordingAtPath(audioPath, {
SampleRate: 22050,
Channels: 1,
AudioQuality: "Low",
AudioEncoding: "aac"
});
Для воспроизведения звука вы можете использовать следующее:
https://github.com/zmxv/react-native-sound