Coder Social home page Coder Social logo

Audio Channel routing about audiolet HOT 4 OPEN

oampo avatar oampo commented on July 21, 2024
Audio Channel routing

from audiolet.

Comments (4)

oampo avatar oampo commented on July 21, 2024

Hm, I think this is currently difficult - as you said the audio API implementations only allow you to send audio on channels 1 and 2. As far as I can tell multichannel output is a planned feature for the Web Audio API, but the implementations are stereo-only at the moment.

One possibility would be to create a node which chucks the audio data through a WebSocket to an application running outside the browser, which then passes that to the audio output. I have no idea whether WebSockets are up to passing that much data with any sort of reliability though, and I can only imagine that results will be flaky at best.

If I think of any better ideas I'll post them up here, but I have a feeling that this will be a matter of waiting for the implementations to work with multiple channels (at which point it will be simple to route Audiolet data to whichever channel you want).

from audiolet.

 avatar commented on July 21, 2024

Just an update: it appears that multi-channel functionality has just been exposed!
http://www.html5audio.org/2013/03/surround-audio-comes-to-the-web.html

https://dvcs.w3.org/hg/audio/raw-file/tip/webaudio/specification.html#AudioDestinationNode

from audiolet.

oampo avatar oampo commented on July 21, 2024

Sorry for the late reply - I've been super busy and my brain skipped over this. Awesome news though. I've just had a quick glance through all the code concerning this and as far as I can tell it should work automagically with multi-channel output. All you need to do it give a different numberOfChannels argument when you create the Audiolet object, and set up your routing accordingly. I don't really have a good way of testing this at the moment, so YMMV. If you try it out I'd be interested to know how it goes.

from audiolet.

jenyckee avatar jenyckee commented on July 21, 2024

Can someone make a gist of how to make this work? It looks like a very desirable feature to me to be able to route your audio into external applications like a DAW.

Imagine I have this:

context = new AudioContext;
oscillator = context.createOscillator();
oscillator.frequency.value = 200;

oscillator.connect(context.destination);

oscillator.start(0);

how could I route this into soundflower and use the audio output directly somewhere outside the browser?

from audiolet.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.