react-native-audio-kit
v1.0.7
Published
iOS/Android audio library for React Native
Downloads
13
Readme
This is a cross-platform (Android and iOS) audio library for React Native.
Originally forked from react-native-audio-toolkit
which is no longer actively maintained.
Both audio playback and recording is supported. In addition to basic
functionality, many useful features are implemented such as seeking,
looping and streaming audio files over the network.
An example how to use this library is included in the ExampleApp directory. The demo showcases most of the functionality that is available, with documentation under docs. In the simplest case, playing media is as easy as:
new Player('filename.mp4').play();
and recording media to filename.mp4 similarly
new Recorder(‘filename.mp4’).record();
How to get this stuff running?
- For a quick test drive, check out the demo application
- Include the library in your project
Documentation
- Find the API documentation here
- Examples on playback from various media sources
- Notes on developing the library itself
- Rough state diagram of the Player
License
All JavaScript, Android and iOS code licensed under MIT license, see LICENSE file. Some of the files are from React Native templates and are licensed accordingly.