# aurora.js **Repository Path**: mirrors_developit/aurora.js ## Basic Information - **Project Name**: aurora.js - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-08 - **Last Updated**: 2026-05-16 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README Aurora.js ========= Aurora.js is a framework that makes writing audio decoders in JavaScript easier. It handles common tasks for you such as dealing with binary data, and the decoding pipeline from source to demuxer to decoder, and finally to the audio hardware itself by abstracting browser audio APIs. Aurora contains two high level APIs for inspecting and playing back decoded audio, and it is easily extendible to support more sources, demuxers, decoders, and audio devices. Check out the [documentation](https://github.com/ofmlabs/aurora.js/wiki) to learn more about using and extending Aurora. ## Demo We have written several decoders using Aurora.js, whose demos you can find [here](http://labs.official.fm/codecs/) and whose source code can be found on our [Github](https://github.com/ofmlabs) page. ## Authors Aurora.js was written by [@jensnockert](https://github.com/jensnockert) and [@devongovett](https://github.com/devongovett) of [@ofmlabs](https://github.com/ofmlabs). ## Building Currently, the [import](https://github.com/devongovett/import) module is used to build Aurora.js. You can run the development server by first installing `import` with npm, and then running it like this: sudo npm install import -g import src/aurora.coffee You can also build a static version like this: import src/aurora.coffee aurora.js By itself, Aurora will play LPCM, uLaw and aLaw files in a number of containers. Be sure to add additional codec support by including some of our other decoders such as [FLAC.js](https://github.com/ofmlabs/flac.js), [ALAC.js](https://github.com/ofmlabs/alac.js), and [MP3.js](https://github.com/devongovett/mp3.js). ## License Aurora.js is released under the MIT license.