Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/skratchdot/timbre.mp3_decode.js
- Owner: skratchdot
- License: mit
- Created: 2013-08-01T13:58:48.000Z (over 11 years ago)
- Default Branch: gh-pages
- Last Pushed: 2014-04-25T04:45:22.000Z (over 10 years ago)
- Last Synced: 2024-10-19T00:24:34.305Z (3 months ago)
- Language: JavaScript
- Size: 531 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE-MIT
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