zmxv / react-native-sound

React Native module for playing sound clips
MIT License
2.78k stars 748 forks source link

Multiple sounds are running #739

Open hardikmehta88999 opened 2 years ago

hardikmehta88999 commented 2 years ago

How can i stop the playing of multiple audio at same time ? react- native [Android-iOS]

EyadAlghamdi commented 2 years ago

i believe each audio is a seperate instance of the Sound class. so you will have to keep track of your instances then run .pause() or .stop() on each of them to stop all audio files together

nagarathna7777 commented 1 year ago

But How??