# rntpc_react-native-audio-toolkit **Repository Path**: openharmony-sig/rntpc_react-native-audio-toolkit ## Basic Information - **Project Name**: rntpc_react-native-audio-toolkit - **Description**: No description available - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: https://gitee.com/openharmony-sig/rntpc_react-native-audio-toolkit - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-10-14 - **Last Updated**: 2025-05-07 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 🚨 **重要提示 | IMPORTANT** > > **⚠️ 此代码仓已归档。新地址请访问 [rntpc_react-native-audio-toolkit](https://gitcode.com/openharmony-sig/rntpc_react-native-audio-toolkit)。| ⚠️ This repository has been archived. For the new address, please visit [rntpc_react-native-audio-toolkit](https://gitcode.com/openharmony-sig/rntpc_react-native-audio-toolkit).** > --- > ![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.