• Stars
    star
    485
  • Rank 90,698 (Top 2 %)
  • Language
    JavaScript
  • License
    ISC License
  • Created over 9 years ago
  • Updated 3 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Sound component to play audio in your web apps

react-sound

npm version

Sound component to play audio in your web apps. Backed by the mighty soundmanager2 library.

Example

// In your React component:
render() {
  return (
    <Sound
      url="cool_sound.mp3"
      playStatus={Sound.status.PLAYING}
      playFromPosition={300 /* in milliseconds */}
      onLoading={this.handleSongLoading}
      onPlaying={this.handleSongPlaying}
      onFinishedPlaying={this.handleSongFinishedPlaying}
    />
  );
}

Sound as a component?

Yes! It's really easy to use sounds in your app as part of the component tree in your React app.

  • Want to start playing a sound? Just render it with a PLAYING status.
  • Want to remove a playing sound? Just stop rendering it.
  • Want to sync it with your app state? Render it using props and state, just as with any React component!

How to install

npm install react-sound --save

How to use

var React = require('react');
var Sound = require('react-sound').default;

// ... or using import:
import React from 'react';
import Sound from 'react-sound';

class MyComponentWithSound extends React.Component {
  render() {
    return <Sound {...props} />; // Check props in next section
  }
}

Note: By default, a restriction on mobile prevent you from playing multiple sounds. To avoid this, you need to set the ignoreMobileRestrictions property to true when setting up soundManager2.

Props

  • url (string): The url of the sound to play.
  • playStatus (Sound.status.{PLAYING,STOPPED,PAUSED}): The current sound playing status. Change it in successive renders to play, stop, pause and resume the sound.
  • playFromPosition (number): Seeks to the position specified by this prop, any time it changes. After that, the sound will continue playing (or not, if the playStatus is not PLAYING). Use this prop to seek to different positions in the sound, but not use it as a controlled component. You should use either this prop or position, but not both.
  • position (number): The current position the sound is at. Use this to make the component a controlled component, meaning that you must update this prop on every onPlaying callback. You should use either this prop or playFromPosition, but not both.
  • volume (number): The current sound's volume. A value between 0 and 100.
  • playbackRate (number): Number affecting sound playback. A value between 0.5 and 4 of normal rate (1).
  • autoLoad (boolean): If the sound should start loading automatically (defaults to false).
  • loop (boolean): If the sound should continue playing in a loop (defaults to false).
  • onError (function): Function that gets called when the sound fails to load, or fails during load or playback. It receives the arguments errorCode and description with details about the error.
  • onLoading (function): Function that gets called while the sound is loading. It receives an object with properties bytesLoaded, bytesTotal and duration.
  • onLoad (function): Function that gets called after the sound has finished loading. It receives an object with property loaded, a boolean set to true if the sound has finished loading successfully.
  • onPlaying (function): Function that gets called while the sound is playing. It receives an object with properties position and duration.
  • onPause (function): Function that gets called when the sound is paused. It receives an object with properties position and duration.
  • onResume (function): Function that gets called while the sound is resumed playing. It receives an object with properties position and duration.
  • onStop (function): Function that gets called while the sound playback is stopped. It receives an object with properties position and duration.
  • onFinishedPlaying (function): Function that gets called when the sound finishes playing (reached end of sound). It receives no parameters.
  • onBufferChange (function): Function that gets called when the sound buffering status changes. It receives a single boolean representing the buffer state.

How to contribute

Feel free to fork and send PRs or issues, be it for features, bug fixes, or documentation!

More Repositories

1

redux-immutable-state-invariant

Redux middleware that detects mutations between and outside redux dispatches. For development use only.
JavaScript
937
star
2

graphql-tag.macro

Babel Macro for graphql-tag
JavaScript
167
star
3

activerecord-futures

Specify queries to be sent all at once to the database. Save round trips!
Ruby
107
star
4

graphql-persisted-document-loader

Webpack loader that adds a documentId to a compiled graphql document, which can be used when persisting/retrieving documents
JavaScript
81
star
5

workshop-pensando-en-react

Workshop introductorio a React
JavaScript
51
star
6

makery.js

Factory-style (via blueprints) object creation for tests. Inspired by Ruby Machinist.
JavaScript
22
star
7

fnky

A funky (and "souly"?) library for functional programming in Javascript
JavaScript
17
star
8

react-style-hot-reload

Exploring how to make react-style work with HMR and react-hot-loader
JavaScript
13
star
9

redux-state-router

Define your urls as a function of your state
JavaScript
8
star
10

cycle-poc

Playing with Cyclejs
JavaScript
5
star
11

StateMachine

State Machine pattern for .NET (inspired by ruby gem state_machine)
C#
4
star
12

rpg

This wanted be a super cool MMORPG, but I abandoned it :(
CoffeeScript
2
star
13

js-runner-fatigue

JS (runner) Fatigue - A game to cope with learning different JS stacks
JavaScript
2
star
14

graphql-client

wip
JavaScript
2
star
15

react-job-board

Quick example job board app using React.
JavaScript
2
star
16

enter-hangman

Hangman game made with React for a live coding session at Meetup.js Buenos Aires
JavaScript
2
star
17

demo_app

Some other app for ruby
Ruby
1
star
18

leoasis.github.com

My Personal Blog
JavaScript
1
star
19

stillness

Immutable manipulation helpers to aid in nested state updates
JavaScript
1
star
20

immutable-model

Immutable Model and Collection abstractions backed by Immutable.js
JavaScript
1
star
21

perf-graphql-tag

Repo to see how much time is saved when preprocessing graphql-tag calls
JavaScript
1
star
22

vows-test

Testing of the Vows module for node.js
JavaScript
1
star