🌐
GitHub
github.com › zmxv › react-native-sound
GitHub - zmxv/react-native-sound: React Native module for playing sound clips
🚀 Cross-platform audio playback for React Native — Play sound clips on iOS and Android with full TypeScript support and modern React Native architecture compatibility.
Starred by 2.9K users
Forked by 784 users
Languages   TypeScript 44.0% | Kotlin 24.3% | Objective-C++ 13.5% | C# 11.2% | Ruby 3.9% | Swift 1.4% | TypeScript 44.0% | Kotlin 24.3% | Objective-C++ 13.5% | C# 11.2% | Ruby 3.9% | Swift 1.4%
Discussions

Why there is not any reliable library to work with Sounds and Musics in React Native (New Arch)?
I mean for me it worked pretty consistently. What issues are you having? More on reddit.com
🌐 r/reactnative
12
1
May 23, 2025
How do you require() a sound file in React Native? - Stack Overflow
I'm using https://github.com/zmxv/react-native-sound to play sounds on my iOS (and Android) app, and I'm trying to include sound files through React Native's asset system, but when I call: var sou... More on stackoverflow.com
🌐 stackoverflow.com
Play audio
I have a long personal history of using audio libraries in react native, I almost tried every libraries available and here is my feedback : If you need track playing, with streaming and everything, go directly with react-native-track-player. I think it's one of the most popular and I saw it grown years to years. Solid one. Playing from URL requires the URL to be the file itself (if I remember well), you can not pass some endpoint that returns a stream. If you need to play one shot sounds like SFX or anything else, just use react-native-audio-toolkit. Then, there is also two other very interesting options : You can use react-native-video and play audio only, this is a solution I used for a while but I switched to react-native-track-player because my client needed streaming and background controls. The last solution consists of using the HTML5 audio player through a Webview. This sounds hacky but believe me if you have some good JS skills you can build something very reliable. More on reddit.com
🌐 r/reactnative
12
8
September 23, 2022
How to play sound in React Native?
I want to play a sound in React Native. I have try to read here in zmxv/react-native-sound, but as a beginner like me, that's documentation make me confused how to apply that in React Native code. More on stackoverflow.com
🌐 stackoverflow.com
🌐
npm
npmjs.com › package › react-native-sound-player
react-native-sound-player - npm
February 11, 2025 - Start using react-native-sound-player in your project by running `npm i react-native-sound-player`. There are 18 other projects in the npm registry using react-native-sound-player.
      » npm install react-native-sound-player
    
Published   Feb 11, 2025
Version   0.14.5
Author   Johnson Su
🌐
Scarb
docs.swmansion.com › react-native-audio-api
React Native Audio API
React Native Audio API is a library that lets you build powerful audio features in your app – from real-time effects and visualization to multi-track playback
Find elsewhere
🌐
Scarb
docs.swmansion.com › react-native-audio-api › docs › guides › lets-make-some-noise
Let's make some noise! | React Native Audio API
We are going to use core audio components such as AudioContext and AudioBufferSourceNode to simply play sound from a file, which will help you develop a basic understanding of the library. Let's start by bootstrapping a simple application with a play button and creating our first instance of AudioContext object. import React from 'react'; import { View, Button } from 'react-native'; import { AudioContext } from 'react-native-audio-api'; export default function App() { const handlePlay = async () => { const audioContext = new AudioContext(); }; return ( <View style={{ flex: 1, justifyContent: 'center', alignItems: 'center' }}> <Button onPress={handlePlay} title="Play sound!"
🌐
Medium
medium.com › react-native-training › a-react-native-sound-recorder-and-player-npm-package-a5f9b3fc7eed
A React Native Sound Recorder and Player NPM Package | by Reginald Johnson | React Native Training | Medium
May 30, 2018 - Now that I have learned more about using React Native and creating friendlier NPM packages, I’ve made some significant updates to the package detailed in this article. The package is now called react-audio-player-recorder-no-linking. I chose this new name to emphasize that it includes separate Recorder and Player components vice just a single SoundRecorder component, and that the package does not require linking to native code.
🌐
LogRocket
blog.logrocket.com › home › how to play sounds in react native using react-native-sound
How to play sounds in React Native using react-native-sound - LogRocket Blog
June 4, 2024 - In this guide, we’ll explore react-native-sound, a powerful audio component that can handle sound-related tasks for your React Native app.
🌐
LinkedIn
linkedin.com › pulse › exploring-react-native-sound-comprehensive-guide-pawan-kumar-mggdf
Exploring React Native Sound: A Comprehensive Guide
February 16, 2024 - 1. What is React Native Sound? React Native Sound is a popular library that enables React Native developers to incorporate audio playback functionality into their applications.
🌐
npm
npmjs.com › package › react-native-sound
react-native-sound - npm
October 15, 2025 - React Native module for playing sound clips on iOS, Android, and Windows. Latest version: 0.13.0, last published: 5 months ago. Start using react-native-sound in your project by running `npm i react-native-sound`. There are 98 other projects ...
      » npm install react-native-sound
    
Published   Oct 15, 2025
Version   0.13.0
Author   Zhen Wang
🌐
GitHub
github.com › hyochan › react-native-nitro-sound
GitHub - hyochan/react-native-nitro-sound: react-native native module for audio recorder and player with nitromodule! · GitHub
react-native native module for audio recorder and player with nitromodule! - hyochan/react-native-nitro-sound
Starred by 934 users
Forked by 252 users
Languages   TypeScript 51.1% | Swift 23.4% | Kotlin 15.6% | JavaScript 6.1% | Ruby 2.3% | CMake 0.6%
🌐
GitHub
github.com › zmxv › react-native-sound › releases
Releases · zmxv/react-native-sound
October 14, 2025 - React Native module for playing sound clips. Contribute to zmxv/react-native-sound development by creating an account on GitHub.
Author   zmxv
🌐
Medium
medium.com › applantic › getting-started-with-sound-audio-in-react-native-e1dc2fd50b78
Getting started with sound (audio) in React Native | by Maciej Matuszewski | Applantic | Medium
January 14, 2018 - At the time of writing (v. 0.52-rc), there is nothing about playback support or recording in the react-native docs. Fortunately, the open-source community never sleeps! There are many libraries that add those functionalities, but I focused on the ones that are the most popular and are widely used. It was the first library I started to play around with. It seems really simple, has a small API and a good support for all the things one would like to do with sound (volume control, pausing, playing, setting time etc.).
🌐
Add Jam
addjam.com › blog › 2025-04-04 › playing-audio-in-react-native
Playing Audio in React Native with react-native-track-player
April 4, 2025 - Integrate audio playback into your React Native apps using react-native-track-player. Includes ready-to-use code snippets for your project.
🌐
GitHub
github.com › zmxv › react-native-sound › issues
zmxv/react-native-sound
React Native module for playing sound clips. Contribute to zmxv/react-native-sound development by creating an account on GitHub.
Author   zmxv
🌐
Rntp
rntp.dev
React Native Track Player — The Premium Audio Player for React Native
The most widely used audio playback library for React Native. Background playback, queue management, caching, preloading, Android Auto, and more.
Author   Double Symmetry GmbH