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

@domchristie/needles

v0.0.2-1

Published

Audio loudness metering for the browser.

Downloads

112

Readme

Needles

Audio loudness metering in the browser.

Features:

  • Live momentary, short-term, and integrated K-weighted loudness (LUFS/LKFS) for a given web audio source.
  • Offline integrated K-weighted loudness for file analysis.
  • Offline momentary and short-term loudness values for higher resolution file analysis.
  • No GUI, it just reports values. The choice of interface and visual style is up to you!
  • Aims to be EBU Mode compliant, following EBU R 128 / ITU-R BS.1770-4.
  • Supports recent versions of Chrome and Firefox.

Future features:

  • True-peak, dBTP (ITU-R BS.1770-4)
  • Loudness range, LRA (EBU R 128)
  • RMS?
  • Progress events for offline measurements
  • Update source and modes dynamically
  • Support for Safari (where some features of the Web Audio API are not supported)

Installation

Install via npm:

npm install @domchristie/needles

Then make the included dist/needles-worker.js file accessible on your server.

Usage

Import the library and create your source, for example via an <audio> element:

import { LoudnessMeter } from '@domchristie/needles'

var AudioContext = window.AudioContext || window.webkitAudioContext
var audioContext = new AudioContext()

var audioElement = document.querySelector('audio')
var source = audioContext.createMediaElementSource(audioElement)

// Listen to the output (optional)
source.connect(audioContext.destination)

Create your loudnessMeter passing in the source, and the worker path:

var loudnessMeter = new LoudnessMeter({
  source: source,
  workerUri: 'public/path/to/needles-worker.js'
})

Listen for the dataavailable event which reports the loudness for each mode:

loudnessMeter.on('dataavailable', function (event) {
  event.data.mode // momentary | short-term | integrated
  event.data.value // -14
})

Start metering:

loudnessMeter.start()

Offline Analysis

Import the library and create an AudioContext:

import { LoudnessMeter } from '@domchristie/needles'

var AudioContext = window.AudioContext || window.webkitAudioContext
var audioContext = new AudioContext()

Create your source: usually by decoding an array buffer from an XHR response, or from reading the file with the FileReader API. Once a file has been decoded, create an OfflineAudioContext using the buffer properties, followed by a buffer source. Finally, create your loudnessMeter passing in the source, then start the analysis. Offline integrated analyses report dataavailable just once, when the entire buffer has been processed.

var fileReader = new FileReader()
fileReader.onload = function (event) {
  audioContext.decodeAudioData(event.target.result, audioDecoded)
}

var fileInput = document.querySelector('input[type="file"]')
fileInput.onchange = function (event) {
  if (fileInput.files[0]) {
    fileReader.readAsArrayBuffer(fileInput.files[0])
  }
}

var OfflineAudioContext = window.OfflineAudioContext || window.webkitOfflineAudioContext

function audioDecoded (buffer) {
  var offlineAudioContext = new OfflineAudioContext(
    buffer.numberOfChannels,
    buffer.length,
    buffer.sampleRate
  )
  var source = offlineAudioContext.createBufferSource()
  source.buffer = buffer

  var loudnessMeter = new Needles({
    source: source,
    modes: ['integrated'],
    workerUri: 'public/path/to/needles-worker.js'
  })

  loudnessMeter.on('dataavailable', function (event) {
    console.log(event.data.value)
  })

  loudnessMeter.start()
}

Options

Needles is initialized with an object, requiring source property (an audio source node), and a workerUri property, referencing the public path of the needles-worker.js file.

Operating modes can be chosen by passing in a modes array. Possible modes are:

  • momentary
  • short-term
  • integrated

For example, to only meter short-term and integrated readings:

var loudnessMeter = new LoudnessMeter({
  source: source,
  modes: ['short-term', 'integrated'],
  workerUri: 'public/path/to/needles-worker.js'
})

Methods

start

Starts processing samples from the source. For offline sources, the source and context rendering will also be started.

pause

Pauses metering.

resume

Resumes metering (following a pause).

reset

Resets all meters, reporting any remaining valid measurements in a dataavailable event. Event handlers are still maintained.

stop

Stops processing, resets all meters and reports any remaining valid measurements in a dataavailable event. Event handlers are still maintained.

on(type, handler)

Listens for an event type then calls the handler.

off(type, handler)

Removes the event handler for the given type. If no handler is specified, all handlers for the given event type are removed. If no arguments are supplied, all event handlers are removed.

Events

dataavailable

Reports measurements for a given mode. The event's data includes:

  • mode: the operating mode, either momentary, short-term, or integrated
  • value: the loudness in LUFS

Other events

start, pause, resume, and stop are triggered after the corresponding methods are called.

Notes on Implementation

Needles uses the ScriptProcessorNode interface to access raw sample data. This is a deprecated API which will be replaced by the Audio Worklet interface (currently only supported in Chrome). Needles aims to be prepared for broader Audio Worklet support by implementing adapters for both interfaces. Initial tests using Audio Worklets in Chrome results in glitchy performance, and so are currently disabled. On the plus side, it doesn't look like ScriptProcessorNodes are going away (at least any time soon).

License

Needles is copyright © 2020+ Dom Christie and released under the MIT license.