Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@lodestream/waveform-samples-generator

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@lodestream/waveform-samples-generator

This is a thin wrapper around [audiowaveform](https://github.com/bbc/audiowaveform) to parse audio files and generate sample data.

  • 1.0.12
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

Waveform Samples Generator Build Status

This is a thin wrapper around audiowaveform to parse audio files and generate sample data.

If you want more features or generate them on your own, just use the original audiowaveform and waveform-data.js.

Installation

  1. REQUIRED: Follow this guide to install audiowaveform binary into your system.
  2. Install this module:
npm install @lodestream/waveform-samples-generator
  1. Use it like this:
const { parseFile } = require("@lodestream/waveform-samples-generator");

const start = async () => {
  const samples = await parseFile({ 
    // filePath: "./audio.mp3",
    url: "https://cdn.jsdelivr.net/gh/lodestreams/waveform-samples-generator@2254b8235c0cd82a482fb2bf7b7404c8fb0df560/docs/test.mp3"
    sampleRate: 10
  });
  // See /src/@types/waveform-data/index.d.ts for detailed schema of `samples`
  console.log(JSON.stringify(samples.max));
};

start();

If your want to draw waveforms out of it, use samples.max, it's an array of points.

Play with this repo

Print out samples (array):

ts-node --files src/scripts/parser.manual.ts
# [2,2,2,3,2,2,3,2,3,2,3,3,3,5,4,4,4,2,...

Play the waveform! Watch it dancing!

ts-node --files src/scripts/player.manual.ts

FAQs

Package last updated on 14 Jan 2019

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc