Gathering detailed insights and metrics for react-native-audio-louder
Gathering detailed insights and metrics for react-native-audio-louder
Gathering detailed insights and metrics for react-native-audio-louder
Gathering detailed insights and metrics for react-native-audio-louder
npm install react-native-audio-louder
Typescript
Module System
Node Version
NPM Version
72.9
Supply Chain
92.4
Quality
75.1
Maintenance
100
Vulnerability
100
License
Objective-C (41.68%)
Java (37.01%)
JavaScript (18.14%)
Python (3.16%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
114 Commits
2 Watchers
2 Branches
Updated on Sep 23, 2019
Latest Version
2.1.2
Package Id
react-native-audio-louder@2.1.2
Size
22.24 kB
NPM Version
3.9.6
Node Version
6.2.0
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
No dependencies detected.
Record and play back audio in your iOS or Android React Native apps.
This repository adds the loudspeaker as default speaker for iOS, and adds a callback function to prepareRecordingAtPath method
Install the npm package and link it to your project:
npm install react-native-audio-louder
react-native link react-native-audio-louder
On Android you need to add a permission to AndroidManifest.xml
:
<uses-permission android:name="android.permission.RECORD_AUDIO" />
In the AudioExample
directory:
npm install
react-native run-ios
react-native run-android
This library supports recording, basic playback and progress reporting.
NOTE: Progress reporting is iOS only for now.
To record in AAC format, at 22050 KHz in low quality mono:
import {AudioRecorder, AudioUtils} from 'react-native-audio-louder';
let audioPath = AudioUtils.DocumentDirectoryPath + '/test.aac';
AudioRecorder.prepareRecordingAtPath(audioPath, {
SampleRate: 22050,
Channels: 1,
AudioQuality: "Low",
AudioEncoding: "aac"
});
SampleRate: int
Channels: int
AudioQuality: string
AudioEncoding: string
Encodings supported on iOS: lpcm, ima4, aac, MAC3, MAC6, ulaw, alaw, mp1, mp2, alac
Encodings supported on Android: aac, aac_eld, amr_nb, amr_wb, he_aac, vorbis
The MeteringEnabled
boolean to enable audio metering.
AudioEncodingBitRate: int
OutputFormat: string, mpeg_4, aac_adts, amr_nb, amr_wb, three_gpp, webm
See the example for more options, including playback and callbacks. For more audio play features, check out React Native Sound
MP3 recording is not supported since the underlying platforms do not support it.
Thanks to Brent Vatne, Johannes Lumpe, Kureev Alexey, Matthew Hartman and Rakan Nimer for their assistance.
Progress tracking code borrowed from https://github.com/brentvatne/react-native-video.
No vulnerabilities found.
Reason
0 existing vulnerabilities detected
Reason
license file detected
Details
Reason
binaries present in source code
Details
Reason
Found 0/30 approved changesets -- score normalized to 0
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
no SAST tool detected
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Score
Last Scanned on 2025-07-07
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More