GoogleChrome/omnitone

Name: omnitone

Owner: GoogleChrome

Description: Spatial Audio Rendering on the web.

Created: 2016-06-02 17:21:26.0

Updated: 2018-05-21 16:29:06.0

Pushed: 2018-05-07 18:40:55.0

Homepage: https://googlechrome.github.io/omnitone

Size: 259931

Language: JavaScript

GitHub Committers

UserMost Recent Commit# Commits

Other Committers

UserEmailMost Recent Commit# Commits

README

Omnitone: Spatial Audio Rendering on the Web

Travis npm GitHub license

Omnitone is a robust implementation of ambisonic decoding and binaural rendering written in Web Audio API. Its rendering process is powered by the fast native features from Web Audio API (GainNode and Convolver), ensuring the optimum performance.

The implementation of Omnitone is based on the Google spatial media specification and SADIE's binaural filters. It also powers Resonance Audio SDK for web.

If you are looking for interactive panning based on Omnitone's ambisonic rendering, be sure to check out Songbird project!

Feature Highlights

Omnitone offers ambisonic decoding and binaural rendering of:

Omnitone in action:
How it works

The input audio stream can be either an HTMLMediaElement (<video> or <audio> tag) or a multichannel AudioBufferSourceNode. The rotation of the sound field also can be easily linked to the mobile phone's sensor or the on-screen user interaction.

Omnitone Diagram

Usage

The first step is to include the library file in an HTML document. Omnitone is available on Google's CDN.

ipt src="https://www.gstatic.com/external_hosted/omnitone/build/omnitone.min.js"></script>

Alternatively, you can install Omnitone as a part of your local development via NPM.

install omnitone

You can also git clone the repository and use the library file as usual.

clone https://github.com/GoogleChrome/omnitone.git
FOARenderer

FOARenderer is for the first-order-ambisonic stream, which consists of 4 channels.

et up an audio element to feed the ambisonic source audio feed.
audioElement = document.createElement('audio');
oElement.src = 'audio-file-foa-acn.wav';

reate AudioContext, MediaElementSourceNode and FOARenderer.
audioContext = new AudioContext();
audioElementSource =
audioContext.createMediaElementSource(audioElement);
foaRenderer = Omnitone.createFOARenderer(audioContext);

ake connection and start play.
enderer.initialize().then(function() {
dioElementSource.connect(foaRenderer.input);
aRenderer.output.connect(audioContext.destination);
dioElement.play();

HOARenderer

HOARenderer is for the higher-order-ambisonic stream. Currently Omnitone supports 2nd and 3rd order ambisonics, which consist of 9 channels and 16 channels respectively.

orks exactly the same way with FOARenderer. See the usage above.
hoaRenderer = Omnitone.createHOARenderer(audioContext);
Rotation and Rendering Mode

The rotation matrix in Omnitone renderer can be updated inside of the application's animation loop to rotate the entire sound field. Omnitone supports both 3x3 and 4x4 rotation matrices(column-major).

Note that

otation with 3x3 or 4x4 matrix.
erer.setRotationMatrix3(rotationMatrix3);
erer.setRotationMatrix4(rotationMatrix4);

For example, if you want to hook up the Three.js perspective camera:

erer.setRotationMatrix4(camera.matrixWorld.elements);

Use setRenderingMode method to change the operation of the decoder. This is useful when switching between spatial media (ambisonic) and non-spatial media (mono or stereo) or when you want to save the CPU power by disabling the decoder.

ono or regular multi-channel layouts.
erer.setRenderingMode('bypass');

se ambisonic rendering.
erer.setRenderingMode('ambisonic');

isable encoding completely. (audio processing disabled)
erer.setRenderingMode('off');
Development
Building Omnitone Locally

For the development, get a copy of the repository first and run the following script to build the library. Omnitone uses WebPack to compile the sources.

run build       # build a non-minified library.
run watch       # recompile whenever any source file changes.
run build-all   # build a minified library and copy static resources.
run build-doc   # build JSDoc3 documentation.
run eslint      # Run ESLint against source files.
Test

Omnitone uses Travis and Karma test runner for the automated testing. To run the test suite locally, make sure to install dependencies before launch the local test runner. The test suite requires the promisifed version of OfflineAudioContext, so the Karma test runner will choose Chrome as a default test runner.

test
Local Testing on Linux

Since the test suite requires Chromium-based browser, the following set up might be necessary for Karma to run properly on Linux distros without Chromium-based browser.

sted with Ubuntu 16.04
 apt install chromium-browser
rt CHROME_BIN=chromium-browser
Audio Codec Compatibility

Omnitone is designed to run on any browser that supports Web Audio API, however, it does not address the incompatibility issue around various media codecs in the browser. At the time of writing, the decoding of compressed multichannel audio with more than 3 channels via <video> or <audio> elements is not fully supported by the majority of mobile browsers.

Related Resources
Acknowledgments

Special thanks to Boris Smus, Brandon Jones, Dillon Cower, Drew Allen, Julius Kammerl and Marcin Gorzel for their help on this project. We are also grateful to Tim Fain and Jaunt VR for their permission to use beautiful VR contents in the demo.

Support

If you have found an error in this library, please file an issue at: https://github.com/GoogleChrome/omnitone/issues.

Patches are encouraged, and may be submitted by forking this project and submitting a pull request through GitHub. See CONTRIBUTING for more detail.

License

Copyright 2016 Google Inc. All Rights Reserved.

Licensed under the Apache License, Version 2.0 (the “License”); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an “AS IS” BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.


This work is supported by the National Institutes of Health's National Center for Advancing Translational Sciences, Grant Number U24TR002306. This work is solely the responsibility of the creators and does not necessarily represent the official views of the National Institutes of Health.