# soundcloud-waveform-parser

> parse soundcloud waveform pngs

Latest version **0.0.1** (published 2014-07-19) · MIT license · 0 weekly downloads

## Install

```sh
npm install soundcloud-waveform-parser
pnpm add soundcloud-waveform-parser
yarn add soundcloud-waveform-parser
bun add soundcloud-waveform-parser
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.1 |
| Published | 2014-07-19 |
| First published | 2014-07-19 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 6 |
| Author | jesse keane |
| Maintainers | jarofghosts |
| Keywords | soundcloud, waveform, png, parser |

## Links

- npm: https://www.npmjs.com/package/soundcloud-waveform-parser
- Repository: https://github.com/jarofghosts/soundcloud-waveform-parser
- Issues: https://github.com/jarofghosts/soundcloud-waveform-parser/issues
- npm.io page: https://npm.io/package/soundcloud-waveform-parser

## Dependencies (1)

- [pngparse](https://npm.io/package/pngparse.md) ^2.0.1

## Alternatives

- [babylon](https://npm.io/package/babylon.md) — 5.1M weekly downloads
- [csscolorparser](https://npm.io/package/csscolorparser.md) — 3.7M weekly downloads
- [expr-eval-fork](https://npm.io/package/expr-eval-fork.md) — 1.5M weekly downloads
- [@leeoniya/ufuzzy](https://npm.io/package/@leeoniya/ufuzzy.md) — 247.7K weekly downloads
- [xml-parser](https://npm.io/package/xml-parser.md) — 78.4K weekly downloads

## Recent versions

- 0.0.1 (latest) — 2014-07-19

## README

soundcloud-waveform-parser
====

[![Build Status](http://img.shields.io/travis/jarofghosts/soundcloud-waveform-parser.svg?style=flat)](https://travis-ci.org/jarofghosts/soundcloud-waveform-parser)
[![npm install](http://img.shields.io/npm/dm/soundcloud-waveform-parser.svg?style=flat)](https://www.npmjs.org/package/soundcloud-waveform-parser)

parse [soundcloud waveform PNGs](https://developers.soundcloud.com/blog/waveforms-let-s-talk-about-them)
into [waveform.js](http://waveformjs.org/) compatible data.

## usage

```js
var fs = require('fs')

var parser = require('soundcloud-waveform-parser')

fs.readFile('soundcloud-waveform.png', parseWaveform)

function parseWaveform(err, data) {
  parser(data, displayResults)
}

function displayResults(err, data) {
  console.log(data) // ta-da!
}
```

## license

MIT

---
_Source: https://npm.io/package/soundcloud-waveform-parser · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
