npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

audio-channel-queue

v1.4.0

Published

Allows you to queue audio files to different playback channels.

Downloads

11

Readme

Audio Channel Queue

The purpose of this package is to help queue audio files so they do not play on top of each other. You can also enqueue audio files to different queues. This allows you to play sounds concurrently, but not have them overlap in their given audio queue.

This package offers TypeScript support 📘, boasts zero dependencies 🚫, and is released under the MIT license 📜. As an added bonus, it's NON-GMO 🌱 and 100% Free Range Organic 🐓.

To preview this package and see how it works with visualized code examples, check out the demo that can be found here: Audio Channel Queue Demo. (A link to the demo repo can be found here: Audio Channel Queue Demo Repo.)

NPM package can be found here.

GitHub Repo can be found here.

How To Install This Package:

Install this package by running either of these commands (typescript packages are included automatically):

  • For npm run npm install audio-channel-queue
  • For yarn run yarn add audio-channel-queue

How To Use This Package:

queueAudio(audioFileGoesHere); Use the queueAudio() function to add a file to the queue and start playing it automatically. It takes two arguments:

  • The first argument is an imported sound file.
  • The second argument is optional and it allows you to choose a different queue channel.

stopCurrentAudioInChannel(queueChannelNumberGoesHere); Use the stopCurrentAudioInChannel() function to stop the current playback of a file in a queue and start playing the next one automatically. It takes one argument:

  • The first argument is optional and it allows you to choose a different queue channel. If you are only using the default channel, just use stopCurrentAudioInChannel().

stopAllAudioInChannel(queueChannelNumberGoesHere); Use the stopAllAudioInChannel() function to stop the current playback of all files in a queue and removes all enqueued files. It takes one argument:

  • The first argument is optional and it allows you to choose a different queue channel. If you are only using the default channel, just use stopAllAudioInChannel().

stopAllAudio(queueChannelNumberGoesHere); Use the stopAllAudio() function to stop the current playback of all files in all queues. It takes no arguments.

If you need to expose the queue array for logging or other purposes, it is available to you as well: audioChannels.

Example Usage in React:

App.tsx

import redTeamWins from './audio/red_team_wins.mp3';
import { queueAudio } from 'audio-channel-queue';

function App(): JSX.Element {

  return (
    <div className="App">
      <button onClick={()=> queueAudio(redTeamWins)}>Play sound</button>
    </div>
  )
};

export default App;

If you cannot import audio files into your app, you may need a custom.d.ts file in the root directory. An example of one is shown here:

custom.d.ts

declare module '*.mp3' {
  const src: string;
  export default src;
}