
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
waveform-viewer
Advanced tools
display waveforms from audio files in the browser

var dragDrop = require('drag-drop');
var viewer = require('waveform-viewer');
dragDrop(document.body, function (files) {
files.forEach(load);
});
function load (file) {
var wv = viewer({ label: file.name });
wv.appendTo('#clips');
var reader = new FileReader;
reader.addEventListener('load', function (ev) {
wv.load(ev.target.result);
});
reader.readAsArrayBuffer(file);
}
var viewer = require('waveform-viewer')
Create a new waveform viewer. Options are:
opts.width - viewer width, default: 800opts.height - viewer height, default: 100opts.samples - number of samples in the waveform graph, default: 100opts.label - label text to show above the waveformopts.fontSize - size of the label font, default: 15opts.colors.waveform - color of the waveform body, default: 'purple'opts.colors.text - color of the label, default: 'purple'opts.colors.waveformHover - color of the waveform body while hovering,
default: 'cyan'opts.colors.textHover - color of the label while hovering, default: 'cyan'Load audio data into the waveform viewer from an array buffer.
Append the viewer v to an html element or css selector string target.
Create a selected region that overlays the waveform data.
Options are:
opts.start - start of the selection in pixelsopts.end - end of the selection in pixelsopts.fill - color to fill the selected regionRemove the selected region created with v.select().
When mouse event happens on the viewer, the event is forwarded with the
underlying ev object.
With npm do:
npm install waveform-viewer
To use in the browser, compile with browserify or fetch a UMD bundle from browserify cdn.
MIT
FAQs
display waveforms from audio files in the browser
We found that waveform-viewer demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.