0.1.5 • Published 8 years ago
audiosprite-loader v0.1.5
Webpack Audio Sprite Loader & Plugin
Audio Sprite loader for Webpack. This loader currently only supports howler.js format. It should be pretty easy to support other audio libraries though.
Usage
Install the loader.
npm install audiosprite-loaderwebpack.config.js
const AudioSprite = require("audiosprite-loader");
module.exports = {
module: {
loaders: [
{
test: /\.(wav|mp3)$/,
loader: AudioSprite.loader()
}
]
},
plugins: [
new AudioSprite.Plugin()
]
}index.js
const audio = require("./audio/file.wav");
audio.play();Dependencies
You'll need ffmpeg installed.
OSX
brew install ffmpeg --with-theora --with-libvorbisLicense
MIT