Package Exports
- uupaa.aac.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (uupaa.aac.js) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
AAC.js 
AAC-LC/HE-AAC parser.
This module made of WebModule.
Documentation
Browser, NW.js and Electron
<script src="<module-dir>/lib/WebModule.js"></script>
<script src="<module-dir>/lib/AAC.js"></script>
<script src="<module-dir>/lib/ADTS.js"></script>
<script>
var stream = new Uint8Array(...);
var adts = AAC.parse(stream);
console.log( adts.duration ); // -> 5.410249433106576
</script>