Socket
Socket
Sign inDemoInstall

react-audio-player

Package Overview
Dependencies
8
Maintainers
1
Versions
35
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    react-audio-player

A simple React wrapper for the audio tag


Version published
Weekly downloads
29K
decreased by-3.04%
Maintainers
1
Install size
1.48 MB
Created
Weekly downloads
 

Readme

Source

React Audio Player

This is a light React wrapper around the HTML5 audio tag. It provides the ability to manipulate the player and listen to events through a nice React interface.

Installation

npm install --save react-audio-player

Also be sure you have react and react-dom installed in your app at version 15 or above.

Usage

import ReactAudioPlayer from 'react-audio-player';
//...
<ReactAudioPlayer
  src="my_audio_file.ogg"
  autoPlay
  controls
/>

Example

See the example directory for a basic working example of using this project. To run it locally, run npm install in the example directory and then npm start.

Props

Props - Native/React Attributes

See the audio tag documentation for detailed explanations of these attributes.

PropTypeDefaultNotes
autoPlayBooleanfalse---
childrenElementnull---
classNameStringempty string---
controlsBooleanfalse---
crossOriginStringempty stringSee MDN's article on CORS for more about this attribute.
controlsListStringempty stringFor Chrome 58+. Only available in React 15.6.2+
idStringempty string---
loopBooleanfalse---
mutedBooleanfalse---
volumeNumber1.0---
preloadString'metadata'---
srcStringempty string---
styleObject------

Props - Events

PropTypeDescription
listenIntervalNumberIndicates how often to call the onListened prop during playback, in milliseconds. Default is 10000.
onAbortFunctioncalled when unloading the audio player, like when switching to a different src file. Passed the event.
onCanPlayFunctioncalled when enough of the file has been downloaded to be able to start playing. Passed the event.
onCanPlayThroughFunctioncalled when enough of the file has been downloaded to play through the entire file. Passed the event.
onEndedFunctioncalled when playback has finished to the end of the file. Passed the event.
onErrorFunctioncalled when the audio tag encounters an error. Passed the event.
onListenFunctioncalled every listenInterval milliseconds during playback. Passed the event.
onPauseFunctioncalled when the user pauses playback. Passed the event.
onPlayFunctioncalled when the user taps play. Passed the event.
onSeekedFunctioncalled when the user drags the time indicator to a new time. Passed the event.
onVolumeChangedFunctioncalled when the user changes the volume, such as by dragging the volume slider
onLoadedMetadataFunctioncalled when the metadata for the given audio file has finished downloading. Passed the event.

Advanced Usage

Access to the audio element

You can get direct access to the underlying audio element. First get a ref to ReactAudioPlayer:

<ReactAudioPlayer
  ref={(element) => { this.rap = element; }}
/>

Then you can access the audio element like this:

this.rap.audioEl

This is especially useful if you need access to read-only attributes of the audio tag such as buffered and played. See the audio tag documentation for more on these attributes.

Keywords

FAQs

Last updated on 19 Apr 2021

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