如何使用React Native Web录制语音?

时间:2018-11-16 03:29:11

标签: react-native react-native-web

是否有使用React Native Web录制和播放音频的方法?我一直在寻找一些资源,但找不到任何资源。

1 个答案:

答案 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"
});

要播放声音,您可以使用以下内容:

https://github.com/zmxv/react-native-sound