@jimbly/vorbis-encoder-js

vorbis-encoder-js is a JavaScript Library that encodes audio data to Ogg Vorbis on web browsers with [Browserify](http://browserify.org/).


License
ISC
Install
npm install @jimbly/vorbis-encoder-js@0.0.1

Documentation

Overview

vorbis-encoder-js is a JavaScript Library that encodes audio data to Ogg Vorbis on web browsers with Browserify.

libogg and libvorbis are used for encoding engine. Emscripten is used to convert libogg/libvorbis C code into JavaScript.

this project is inspired by OggVorbisEncoder.js.

Installation

$ npm install vorbis-encoder-js

Usage

var Encoder = require("vorbis-encoder-js").encoder;

var sampleRate = audioBuffer.sampleRate;
var numberOfChannels = audioBuffer.numberOfChannels;
var quality = 0; // -1 to 1
var tags = {
  TITLE: "test_ogg",
  ALBUM: "テストアルバム",
  Artist: "みやびさん",
  LOOPSTART: "10000",
  LOOPLENGTH: "30000"
};

var encoder = new Encoder(sampleRate, numberOfChannels, quality, tags);
encoder.encodeFrom(audioBuffer);
var blob = encoder.finish();