Socket
Socket
Sign inDemoInstall

react-native-simple-sound

Package Overview
Dependencies
0
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    react-native-simple-sound

Start, stop, and pause a sound. iOS only. Derived from https://github.com/zmxv/react-native-sound


Version published
Maintainers
1
Install size
53.7 kB
Created

Readme

Source

react-native-simple-sound

React Native module for playing, pausing, and stopping sound clips.

Derived from Derived from react-native-sound, which allows multiple sound files to be played at once, but does not offer pause or stop.

Installation

npm install react-native-simple-sound --save

In XCode, right click Libraries. Click Add Files to "[Your project]". Navigate to node_modules/react-native-simple-sound. Add the file RNSimpleSound.xcodeproj.

In the project navigator, select your project. Click the build target. Click Build Phases. Expand Link Binary With Libraries. Click the plus button and add libRNSimpleSound.a under Workspace.

Run your project (⌘+R).

Example

var Sound = require('react-native-simple-sound');
Sound.enable(true); // Enable sound
Sound.prepare('tap.aac'); // Preload the sound file 'tap.aac' in the app bundle
Sound.play(); // Play the sound 'tap.aac'
Sound.pause(); // Pause the sound
Sound.play(); // Resume playing the sound
Sound.stop(); // Stop and reset the sound.

Notes

  • Sound.enable(true) must be called before playing any sound.
  • Sound.prepare(...) must be called before playing - preloads a sound file and prepares it for playback.
  • To change sounds, stop() the current sound and call prepare() with the new sound.
  • The module wraps AVAudioPlayer which supports aac, aiff, mp3, wav etc. The full list of supported formats can be found here.
  • The stop() function resets the sound back to the beginning, this is different from the standard behavior of AVAudioPlayer
  • Sound files must be in the bundle (in your app's main folder in Xcode)

Keywords

FAQs

Last updated on 07 Nov 2015

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc