Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

react-audio-wizard

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-audio-wizard

Headless audio player for React

  • 0.0.3-alpha.4
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
9
decreased by-59.09%
Maintainers
1
Weekly downloads
 
Created
Source

Headless audio player for React

A simple, customizable and headless audio player for React applications. This library is a hook that you can use to play audio files, pause, seek, and track current time and duration of the audio.

Installation

npm install react-audio-wizard // or yarn

Usage

import { useAudioWizard } from 'react-audio-wizard'

function MyComponent() {
  const { status, play, pause, handleSeek, duration, currentTime } = useAudioWizard({ url: 'audiofile.mp3' })

  return (
    <div>
      <button onClick={play} disabled={status !== 'loaded' && status !== 'paused'}>
        Play
      </button>
      <button onClick={pause} disabled={status !== 'playing'}>
        Pause
      </button>
      <button onClick={() => handleSeek({ seekTime: 1 })}>+1</button>
      <p>Status: {status}</p>
      <p>Duration: {duration}</p>
      <p>Current Time: {currentTime}</p>
    </div>
  )
}

API

useAudioWizard({ url })

The useAudioWizard function takes a single argument: an object that contains the url of the audio file.

Returns an object with the following properties:

  • status: The current status of the audio. Can be 'idle', 'loaded', 'playing', or 'paused'.
  • play: A function that starts playing the audio.
  • pause: A function that pauses the audio.
  • handleSeek: A function that seeks the audio to a specific time. It takes an object with a seekTime property.
  • duration: The total duration of the audio in seconds.
  • currentTime: The current playback position in seconds.
  • handleAudioSeek(e: React.ChangeEvent)

The status returned from the useAudioWizard hook indicates the current state of the audio player. Here are the possible values:

  • 'idle': The audio player is initialized but has not started loading any audio data yet. This is the default state when the hook is first used.
  • 'loaded': The audio data has been fully loaded and the player is ready to start playback. You will typically switch to this state after the audio data has been fetched and is ready for use.
  • 'playing': The audio is currently playing. You will typically switch to this state after the play function is invoked.
  • 'paused': The audio is currently paused. You will typically switch to this state after the pause function is invoked.

License MIT

Keywords

FAQs

Package last updated on 10 May 2023

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc