Skip to content

Instantly share code, notes, and snippets.

@maciejmatu
Created January 6, 2018 09:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save maciejmatu/84f011a212941c0645ae1e22e24d1f39 to your computer and use it in GitHub Desktop.
Save maciejmatu/84f011a212941c0645ae1e22e24d1f39 to your computer and use it in GitHub Desktop.
import { AudioRecorder, AudioUtils } from 'react-native-audio';
let audioPath = AudioUtils.DocumentDirectoryPath + '/test.aac';
AudioRecorder.prepareRecordingAtPath(audioPath, {
SampleRate: 22050,
Channels: 1,
AudioQuality: "Low",
AudioEncoding: "aac"
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment