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

ng-openaudio

v0.0.8

Published

Openaudio is an Angular library component developped to manipulate audio source and visualize the sound, it's a visual audio player with customization

Downloads

17

Readme

Openaudio

Openaudio is an Angular library component developped to manipulate audio source and visualize the sound. Openaudio uses flexbox, it's responsive no matter the height and width of the device.

Demo

Try it out here: DEMO or clone this repo and run ng serve for a full demo of openaudio. Angular version 8.

Features

  • Play an audio source
  • Visual effects based on audio source frequency (BARS, CIRCULAR) Normalized
  • Player visual controls available (Play/Pause, seek, volume, switch visual style)
  • Customize effects (gradient style, accent color, background color, bars amount)
  • Displays song cover, artist, album, name, lyrics
  • Add synced (karaoke) or simple lyrics
  • Play audio stream (radio, podcast)

Some audio source cannot be rendered for visualization, openaudio will still be able to play them !

How to use

First install the package with the command npm i ng-openaudio

Then, in your module.ts, import the library module

import { NgOpenaudioModule } from 'ng-openaudio';

And add it to your imports modules

Then, build a songData object containing the song's name, artist, album, cover image url, audio source url, lyrics

// build a new SongData object
const s = new SongData();
s.audioSourceUrl = 'assets/UnknownBrain_Superhero.mp3';
s.name = 'Superhero';
s.artist = 'Unknown Brain';
s.album = 'No Copyright Song';
s.coverImgUrl = 'assets/ncs_superhero_cover.jpg';
this.mySongData = s;
// choose a visual style or leave it to default
this.visualStyle = EqualizerStyle.CIRCULAR

you can use <ng-openaudio></ng-openaudio> it in any component.html

<ng-openaudio
    [visualContainerHeight]='this.vch'
    [accentColor]='this.accColor'
    [backgroundColor]='this.bgColor'
    [barGradient]='this.gradient'
    [barAmount]='this.barAmount'
    [songData]='this.mySongData'
    [controls]='this.playerControls'
    [visualStyle]='this.visualStyle'
    [volume]='this.volume'
    [playing]='this.playerPlaying'
    [current]='this.currentPosition'
    [showLyrics]='this.showLyrics'
    (statusEvent)='this.statusEvent($event)'
    (errorsEvent)='this.errorEvent($event)'>
</ng-openaudio>

Check out the repo for a full demo code here

Inputs

| Property | Type | Note | | -------- | ---- | ---- | | [visualContainerHeight] | string | Height of the visual area | | [accentColor] | string | Accent color across the player | | [backgroundColor] | string | Background color across the player | | [barGradient] | string | Gradient style for bars frequency visual | | [barAmount] | number | Amount of bars (min: 0, max: 96) for the bars frequency visual | [songData] | SongData | Song data containing the name, album, artist, cover image and audio source url (local or distant) | | [controls] | boolean | Enable/disable the visual controls for the user | | [visualStyle] | EqualizerStyle | Specify the visual style for the player (BARS_DOWN, BARS_UP, BARS_MIDDLE, CIRCULAR, COVER) | | [volume] | number | Volume of the player (min: 0, max: 100) | | [playing] | boolean | Specify the player status for the current song (true: play, false: pause) | | [current] | number | Specify the current progress position of the song | | [showLyrics] | boolean | Display the lyrics (synced or simple) if provided in songData |

Outputs

| Event | Type | Note | | -------- | ---- | ---- | | (StatusEvent) | StatusEvent | Emits these events (songLoaded: audio source was loaded, volumeChanged: player volume was changed, songEnded: current track has ended, songPaused: the current track was paused, songPlayed: the current track was played, songProgressUpdated: the current track playback position was updated ) | | (errorEvent) | any | Emits all errors |

To-Do / Improvements

  • Queue for songs
    • add next/prev feature
    • add loop/random feature
  • add electric wave style
  • add ring bar style
  • add lyrics karaoke style -> DONE

NPM

This package is on npm https://www.npmjs.com/package/ng-openaudio

License

This package is under the MIT license