├── LICENSE.txt ├── README.md ├── Rakefile ├── include └── config.h ├── lib ├── Mp3LameEncoder.js ├── Mp3LameEncoder.min.js └── Mp3LameEncoder.min.js.mem └── src ├── exports.json ├── post.js └── pre.js /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higuma/mp3-lame-encoder-js/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higuma/mp3-lame-encoder-js/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higuma/mp3-lame-encoder-js/HEAD/Rakefile -------------------------------------------------------------------------------- /include/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higuma/mp3-lame-encoder-js/HEAD/include/config.h -------------------------------------------------------------------------------- /lib/Mp3LameEncoder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higuma/mp3-lame-encoder-js/HEAD/lib/Mp3LameEncoder.js -------------------------------------------------------------------------------- /lib/Mp3LameEncoder.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higuma/mp3-lame-encoder-js/HEAD/lib/Mp3LameEncoder.min.js -------------------------------------------------------------------------------- /lib/Mp3LameEncoder.min.js.mem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higuma/mp3-lame-encoder-js/HEAD/lib/Mp3LameEncoder.min.js.mem -------------------------------------------------------------------------------- /src/exports.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higuma/mp3-lame-encoder-js/HEAD/src/exports.json -------------------------------------------------------------------------------- /src/post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higuma/mp3-lame-encoder-js/HEAD/src/post.js -------------------------------------------------------------------------------- /src/pre.js: -------------------------------------------------------------------------------- 1 | (function(self) { 2 | var Module = self.Mp3LameEncoderConfig; 3 | --------------------------------------------------------------------------------