--- /dev/null
+{
+ "name": "recorderjs",
+ "version": "0.0.0",
+ "homepage": "https://github.com/faradayio/Recorderjs",
+ "authors": [
+ "Tristan Davies <github@tristan.io>"
+ ],
+ "description": "A plugin for recording/exporting the output of Web Audio API nodes",
+ "main": "recorder.js",
+ "moduleType": [
+ "globals"
+ ],
+ "license": "MIT",
+ "ignore": [
+ "**/.*",
+ "node_modules",
+ "bower_components",
+ "test",
+ "tests"
+ ],
+ "_release": "0.0.0",
+ "_resolution": {
+ "type": "version",
+ "tag": "v0.0.0",
+ "commit": "a60e4a740673ee86d1e1ed67b820511136937058"
+ },
+ "_source": "git://github.com/faradayio/Recorderjs.git",
+ "_target": "~0.0.0",
+ "_originalSource": "recorderjs",
+ "_direct": true
+}
\ No newline at end of file
--- /dev/null
+# Recorder.js
+
+## A plugin for recording/exporting the output of Web Audio API nodes
+
+### Syntax
+#### Constructor
+ var rec = new Recorder(source [, config])
+
+Creates a recorder instance.
+
+- **source** - The node whose output you wish to capture
+- **config** - (*optional*) A configuration object (see **config** section below)
+
+---------
+#### Config
+
+- **workerPath** - Path to recorder.js worker script. Defaults to 'js/recorderjs/recorderWorker.js'
+- **bufferLen** - The length of the buffer that the internal JavaScriptNode uses to capture the audio. Can be tweaked if experiencing performance issues. Defaults to 4096.
+- **callback** - A default callback to be used with `exportWAV`.
+- **type** - The type of the Blob generated by `exportWAV`. Defaults to 'audio/wav'.
+
+---------
+#### Instance Methods
+
+ rec.record()
+ rec.stop()
+
+Pretty self-explanatory... **record** will begin capturing audio and **stop** will cease capturing audio. Subsequent calls to **record** will add to the current recording.
+
+ rec.clear()
+
+This will clear the recording.
+
+ rec.exportWAV([callback][, type])
+
+This will generate a Blob object containing the recording in WAV format. The callback will be called with the Blob as its sole argument. If a callback is not specified, the default callback (as defined in the config) will be used. If no default has been set, an error will be thrown.
+
+In addition, you may specify the type of Blob to be returned (defaults to 'audio/wav').
+
+ rec.getBuffer([callback])
+
+This will pass the recorded stereo buffer (as an array of two Float32Arrays, for the separate left and right channels) to the callback. It can be played back by creating a new source buffer and setting these buffers as the separate channel data:
+
+ function getBufferCallback( buffers ) {
+ var newSource = audioContext.createBufferSource();
+ var newBuffer = audioContext.createBuffer( 2, buffers[0].length, audioContext.sampleRate );
+ newBuffer.getChannelData(0).set(buffers[0]);
+ newBuffer.getChannelData(1).set(buffers[1]);
+ newSource.buffer = newBuffer;
+
+ newSource.connect( audioContext.destination );
+ newSource.start(0);
+ }
+
+This sample code will play back the stereo buffer.
+
+
+ rec.configure(config)
+
+This will set the configuration for Recorder by passing in a config object.
+
+#### Utility Methods (static)
+
+ Recorder.forceDownload(blob[, filename])
+
+This method will force a download using the new anchor link *download* attribute. Filename defaults to 'output.wav'.
+
+## License (MIT)
+
+Copyright © 2013 Matt Diamond
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
\ No newline at end of file
--- /dev/null
+{
+ "name": "recorderjs",
+ "version": "0.0.0",
+ "homepage": "https://github.com/faradayio/Recorderjs",
+ "authors": [
+ "Tristan Davies <github@tristan.io>"
+ ],
+ "description": "A plugin for recording/exporting the output of Web Audio API nodes",
+ "main": "recorder.js",
+ "moduleType": [
+ "globals"
+ ],
+ "license": "MIT",
+ "ignore": [
+ "**/.*",
+ "node_modules",
+ "bower_components",
+ "test",
+ "tests"
+ ]
+}
--- /dev/null
+<!DOCTYPE html>
+
+<html>
+<head>
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+ <title>Live input record and playback</title>
+ <style type='text/css'>
+ ul { list-style: none; }
+ #recordingslist audio { display: block; margin-bottom: 10px; }
+ </style>
+</head>
+<body>
+
+ <h1>Recorder.js simple WAV export example</h1>
+
+ <p>Make sure you are using a recent version of Google Chrome.</p>
+ <p>Also before you enable microphone input either plug in headphones or turn the volume down if you want to avoid ear splitting feedback!</p>
+
+ <button onclick="startRecording(this);">record</button>
+ <button onclick="stopRecording(this);" disabled>stop</button>
+
+ <h2>Recordings</h2>
+ <ul id="recordingslist"></ul>
+
+ <h2>Log</h2>
+ <pre id="log"></pre>
+
+ <script>
+ function __log(e, data) {
+ log.innerHTML += "\n" + e + " " + (data || '');
+ }
+
+ var audio_context;
+ var recorder;
+
+ function startUserMedia(stream) {
+ var input = audio_context.createMediaStreamSource(stream);
+ __log('Media stream created.');
+
+ input.connect(audio_context.destination);
+ __log('Input connected to audio context destination.');
+
+ recorder = new Recorder(input);
+ __log('Recorder initialised.');
+ }
+
+ function startRecording(button) {
+ recorder && recorder.record();
+ button.disabled = true;
+ button.nextElementSibling.disabled = false;
+ __log('Recording...');
+ }
+
+ function stopRecording(button) {
+ recorder && recorder.stop();
+ button.disabled = true;
+ button.previousElementSibling.disabled = false;
+ __log('Stopped recording.');
+
+ // create WAV download link using audio data blob
+ createDownloadLink();
+
+ recorder.clear();
+ }
+
+ function createDownloadLink() {
+ recorder && recorder.exportWAV(function(blob) {
+ var url = URL.createObjectURL(blob);
+ var li = document.createElement('li');
+ var au = document.createElement('audio');
+ var hf = document.createElement('a');
+
+ au.controls = true;
+ au.src = url;
+ hf.href = url;
+ hf.download = new Date().toISOString() + '.wav';
+ hf.innerHTML = hf.download;
+ li.appendChild(au);
+ li.appendChild(hf);
+ recordingslist.appendChild(li);
+ });
+ }
+
+ window.onload = function init() {
+ try {
+ // webkit shim
+ window.AudioContext = window.AudioContext || window.webkitAudioContext;
+ navigator.getUserMedia = navigator.getUserMedia || navigator.webkitGetUserMedia;
+ window.URL = window.URL || window.webkitURL;
+
+ audio_context = new AudioContext;
+ __log('Audio context set up.');
+ __log('navigator.getUserMedia ' + (navigator.getUserMedia ? 'available.' : 'not present!'));
+ } catch (e) {
+ alert('No web audio support in this browser!');
+ }
+
+ navigator.getUserMedia({audio: true}, startUserMedia, function(e) {
+ __log('No live audio input: ' + e);
+ });
+ };
+ </script>
+
+ <script src="recorder.js"></script>
+</body>
+</html>
--- /dev/null
+(function(window){
+
+ var WORKER_PATH = 'recorderWorker.js';
+
+ var Recorder = function(source, cfg){
+ var config = cfg || {};
+ var bufferLen = config.bufferLen || 4096;
+ this.context = source.context;
+ this.node = (this.context.createScriptProcessor ||
+ this.context.createJavaScriptNode).call(this.context,
+ bufferLen, 2, 2);
+ var worker = new Worker(config.workerPath || WORKER_PATH);
+ worker.postMessage({
+ command: 'init',
+ config: {
+ sampleRate: this.context.sampleRate
+ }
+ });
+ var recording = false,
+ currCallback;
+
+ var self = this;
+ this.node.onaudioprocess = function(e){
+ if (!recording) return;
+ self.ondata && self.ondata(e.inputBuffer.getChannelData(0));
+ worker.postMessage({
+ command: 'record',
+ buffer: [
+ e.inputBuffer.getChannelData(0),
+ e.inputBuffer.getChannelData(1)
+ ]
+ });
+ }
+
+ this.configure = function(cfg){
+ for (var prop in cfg){
+ if (cfg.hasOwnProperty(prop)){
+ config[prop] = cfg[prop];
+ }
+ }
+ }
+
+ this.record = function(){
+ recording = true;
+ }
+
+ this.stop = function(){
+ recording = false;
+ }
+
+ this.clear = function(){
+ worker.postMessage({ command: 'clear' });
+ }
+
+ this.getBuffer = function(cb) {
+ currCallback = cb || config.callback;
+ worker.postMessage({ command: 'getBuffer' })
+ }
+
+ this.exportWAV = function(cb, type){
+ currCallback = cb || config.callback;
+ type = type || config.type || 'audio/wav';
+ if (!currCallback) throw new Error('Callback not set');
+ worker.postMessage({
+ command: 'exportWAV',
+ type: type
+ });
+ }
+
+ this.shutdown = function(){
+ worker.terminate();
+ source.disconnect();
+ this.node.disconnect();
+ };
+
+ worker.onmessage = function(e){
+ var blob = e.data;
+ currCallback(blob);
+ }
+
+ source.connect(this.node);
+ this.node.connect(this.context.destination); //this should not be necessary
+ };
+
+ Recorder.forceDownload = function(blob, filename){
+ var url = (window.URL || window.webkitURL).createObjectURL(blob);
+ var link = window.document.createElement('a');
+ link.href = url;
+ link.download = filename || 'output.wav';
+ var click = document.createEvent("Event");
+ click.initEvent("click", true, true);
+ link.dispatchEvent(click);
+ }
+
+ window.Recorder = Recorder;
+
+})(window);
--- /dev/null
+var recLength = 0,
+ recBuffersL = [],
+ recBuffersR = [],
+ sampleRate;
+
+this.onmessage = function(e){
+ switch(e.data.command){
+ case 'init':
+ init(e.data.config);
+ break;
+ case 'record':
+ record(e.data.buffer);
+ break;
+ case 'exportWAV':
+ exportWAV(e.data.type);
+ break;
+ case 'getBuffer':
+ getBuffer();
+ break;
+ case 'clear':
+ clear();
+ break;
+ }
+};
+
+function init(config){
+ sampleRate = config.sampleRate;
+}
+
+function record(inputBuffer){
+ recBuffersL.push(inputBuffer[0]);
+ recBuffersR.push(inputBuffer[1]);
+ recLength += inputBuffer[0].length;
+}
+
+function exportWAV(type){
+ var bufferL = mergeBuffers(recBuffersL, recLength);
+ var bufferR = mergeBuffers(recBuffersR, recLength);
+ var interleaved = interleave(bufferL, bufferR);
+ var dataview = encodeWAV(interleaved);
+ var audioBlob = new Blob([dataview], { type: type });
+
+ this.postMessage(audioBlob);
+}
+
+function getBuffer() {
+ var buffers = [];
+ buffers.push( mergeBuffers(recBuffersL, recLength) );
+ buffers.push( mergeBuffers(recBuffersR, recLength) );
+ this.postMessage(buffers);
+}
+
+function clear(){
+ recLength = 0;
+ recBuffersL = [];
+ recBuffersR = [];
+}
+
+function mergeBuffers(recBuffers, recLength){
+ var result = new Float32Array(recLength);
+ var offset = 0;
+ for (var i = 0; i < recBuffers.length; i++){
+ result.set(recBuffers[i], offset);
+ offset += recBuffers[i].length;
+ }
+ return result;
+}
+
+function interleave(inputL, inputR){
+ var length = inputL.length + inputR.length;
+ var result = new Float32Array(length);
+
+ var index = 0,
+ inputIndex = 0;
+
+ while (index < length){
+ result[index++] = inputL[inputIndex];
+ result[index++] = inputR[inputIndex];
+ inputIndex++;
+ }
+ return result;
+}
+
+function floatTo16BitPCM(output, offset, input){
+ for (var i = 0; i < input.length; i++, offset+=2){
+ var s = Math.max(-1, Math.min(1, input[i]));
+ output.setInt16(offset, s < 0 ? s * 0x8000 : s * 0x7FFF, true);
+ }
+}
+
+function writeString(view, offset, string){
+ for (var i = 0; i < string.length; i++){
+ view.setUint8(offset + i, string.charCodeAt(i));
+ }
+}
+
+function encodeWAV(samples){
+ var buffer = new ArrayBuffer(44 + samples.length * 2);
+ var view = new DataView(buffer);
+
+ /* RIFF identifier */
+ writeString(view, 0, 'RIFF');
+ /* RIFF chunk length */
+ view.setUint32(4, 36 + samples.length * 2, true);
+ /* RIFF type */
+ writeString(view, 8, 'WAVE');
+ /* format chunk identifier */
+ writeString(view, 12, 'fmt ');
+ /* format chunk length */
+ view.setUint32(16, 16, true);
+ /* sample format (raw) */
+ view.setUint16(20, 1, true);
+ /* channel count */
+ view.setUint16(22, 2, true);
+ /* sample rate */
+ view.setUint32(24, sampleRate, true);
+ /* byte rate (sample rate * block align) */
+ view.setUint32(28, sampleRate * 4, true);
+ /* block align (channel count * bytes per sample) */
+ view.setUint16(32, 4, true);
+ /* bits per sample */
+ view.setUint16(34, 16, true);
+ /* data chunk identifier */
+ writeString(view, 36, 'data');
+ /* data chunk length */
+ view.setUint32(40, samples.length * 2, true);
+
+ floatTo16BitPCM(view, 44, samples);
+
+ return view;
+}