Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/skratchdot/timbre.mp3_decode.js

a timbre.js plugin that decodes mp3s using jsmad
https://github.com/skratchdot/timbre.mp3_decode.js

Last synced: about 1 month ago
JSON representation

a timbre.js plugin that decodes mp3s using jsmad

Awesome Lists containing this project

README

        

# timbre.mp3_decode.js

Currently you can only decode mp3s with timbre.js in Node. This plugin
allows you to decode mp3s in the browser using
[jsmad](https://github.com/audiocogs/jsmad) and web workers.

## Demo

[Timbre.js MP3 Online Decoding Demo](http://projects.skratchdot.com/timbre.mp3_decode.js/)

## Dependencies

- [timbre.js](https://github.com/mohayonao/timbre.js/)

## Usage

```html




T('audio').loadthis('test.mp3', function() {
this.play();
}).on('ended', function() {
this.pause();
});

```

## Developers

npm install
grunt build