1

有没有办法使用 react native web 录制和播放音频?我一直在寻找一些资源,但我找不到任何资源。

4

1 回答 1

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

于 2018-11-16T03:48:48.490 回答