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-render

v2.0.1

Published

Class for rendering audio stream data for frequency/time domains. Browser/node.

Downloads

51

Readme

Audio-render is a pass-through audio stream, providing structure for rendering stream audio data.

It resolves common routines like frequency analysis (fft), buffering data, reading pcm format, providing unified API for rendering both in node/browser, events, options, hooks etc. Creating new rendering components based on audio-render is as simple as creating them from scratch, but times more reliable. It is also useful for creating quick debuggers.

Usage

$ npm install audio-render

myAudioStream
.pipe(Render(function (canvas) {
	var data = this.getFloatTimeDomainData();

	//draw volume, spectrum, spectrogram, waveform — any data you need
}))
.pipe(Speaker());

API

var Generator = require('audio-generator');
var Speaker = require('audio-speaker');
var RenderStream = require('audio-render');
var isBrowser = require('is-browser');


//create rendering stream from passed options
var renderer = RenderStream({
	//custom rendering function, can be passed instead of options
	render: function (canvas) {
		//see audio-analyser for API
		var fdata = this.getFrequencyData();
		var waveform = this.getTimeData(size);

		//or use web-audio-api AnalyserNode methods here
		this.getFloatFrequencyData(new Float32Array(self.frequencyBinCount));
		this.getFloatTimeDomainData(new Float32Array(self.fftSize));
	},

	//channel number to render, 0 - L, 1 - R, ...
	channel: 0,

	//FPS (node only)
	framesPerSecond: 20,

	//max amount of data to store, number of samples
	bufferSize: 44100,

	//custom canvas (optinal), if you need to render along with other renderer
	canvas: undefined,

	//Analysis options

	//Magnitude diapasone, in dB
	minDecibels: -100,
	maxDecibels: 0,

	// Number of points to grab for fft
	fftSize: 1024,

	// Number of points to plot for fft
	frequencyBinCount: 1024/2,

	// Smoothing, or the priority of the old data over the new data
	smoothingTimeConstant: 0.2

	//...any pcm format options, if required. See pcm-util below.
});


//Depending on the enviromnent, expose canvas
isBrowser && document.body.appendChild(renderer.canvas);

renderer.on('render', function (canvas, data) {
	process.stdout.write(canvas._canvas.frame());
});


//If renderer is not piped, it works as a sink, else - as pass-through
Generator().pipe(renderer).pipe(Speaker());

Related

audio-analyser — audio analyser stream. audio-spectrum — render audio spectrum. audio-spectrogram — render audio spectrogram. audio-waveform — render audio waveform. audio-stat — render any kind of audio info: waveform, spectrogram etc. audio-spiral — render spiral spectrogram, based on audio-render. drawille-canvas — node/browser canvas class. pcm-util — utils for work with pcm-streams.