是否有使用React Native Web录制和播放音频的方法?我一直在寻找一些资源,但找不到任何资源。
答案 0 :(得分:0)
签出以下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"
});
要播放声音,您可以使用以下内容: