# react-native-audio-toolkit **Repository Path**: mirrors_react-native-community/react-native-audio-toolkit ## Basic Information - **Project Name**: react-native-audio-toolkit - **Description**: Cross-platform audio library for React Native - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-18 - **Last Updated**: 2026-03-21 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ![banner](/banner.png) [![npm version](https://badge.fury.io/js/%40react-native-community%2Faudio-toolkit.svg)](https://badge.fury.io/js/%40react-native-community%2Faudio-toolkit) This is a cross-platform (Android and iOS) audio library for React Native. 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](/ExampleApp) directory. The demo showcases most of the functionality that is available, with documentation under [docs](/docs). In the simplest case, playing media is as easy as: ```js new Player('filename.mp4').play(); ``` and recording media to filename.mp4 similarly ```js new Recorder(‘filename.mp4’).record(); ``` How to get this stuff running? ------------------------------ * For a quick test drive, check out the [demo application](/ExampleApp) * [Include the library](/docs/SETUP.md) in your project Documentation ------------- * Find the API documentation [here](/docs/API.md) * Examples on playback from various [media sources](/docs/SOURCES.md) * Notes on [developing the library itself](/docs/DEVELOPING.md) * Rough [state diagram](/docs/state_diagram.svg) of the [Player](src/Player.js) * View the [changelog](/CHANGELOG.md) 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.