GithubHelp home page GithubHelp logo

webdawplugins's Introduction

DAW Plugins for Web Browsers

Source code for WAC-15 paper

Demo (requires Chrome)

webdawplugins's People

Stargazers

netero avatar Little devil avatar Me avatar 小沙盒工作室-室长 avatar  avatar Franco Sampietro avatar Patricio Ovalle avatar Starsign68 avatar jdickman avatar Tommy D. Rossi avatar Bedevilled00 avatar  avatar Larry Mickie avatar Cat  avatar Mag ElHakim avatar shiozawa-at-live2d-com avatar [0] avatar Amila Welihinda avatar  avatar Nathan Ward avatar Varlen Pavani Neto avatar Frank Robert avatar Todd Pressley avatar Adam Goode avatar Adrien avatar Gregory Collett avatar Andrew Hollis avatar Nathan Hayflick avatar Alex McLeod avatar Hugh Rawlinson avatar Anders K avatar Bawar Jalal avatar Michael Anthony avatar Ron Lobo avatar Preston Badeer avatar jean-claude guin avatar Mike Almond avatar Nuno avatar uno avatar James J. Womack avatar Lil Data avatar  avatar Pascal Gauthier avatar Oli Larkin avatar Jason Miller avatar Jason Sigal avatar Karim Ratib avatar Erik Werner avatar Jordan Santell avatar Tony Miller avatar Cristiano Belloni avatar Steven Yi avatar Guillaume Pellerin avatar Benjamin Taylor avatar Chris Wilson avatar

Watchers

LEE JAE HO avatar James Cloos avatar Michael Anthony avatar Barry avatar Andrew Hollis avatar  avatar  avatar  avatar

webdawplugins's Issues

Impossible to use an external MIDI device as an input in the demo app

I'm trying to use and external MIDI keyboard but the list of available input devices is not complete. Reading the code (https://github.com/jariseon/webdawplugins/blob/master/runtime/demo.html#L283) I can understand that if there is more than 1 device the first one is put in the correct section (inputs) but the remaining devices are incorrectly put in the outputs section.

You probably want something more along the lines of:

io.forEach( function (it, idx) {
  for (var itport = it.next(); !itport.done; itport = it.next())
    {
      var port = itport.value;
      var option = new Option(port.name);
      option.midiport = port;
      if (idx == 0) midiport_in.appendChild(option);
      else midiport_out.appendChild(option);
    }
});

Then, seems like the onmidiport function is not present but is expected to be executed every time the selection of input / output MIDI device changes. The input device is never actually updated and the virtual keyboard / arpeggiator stays set as the input.

AudioWorklet instead of ScriptProcessorNode

Excellent work Sir. Now, ScriptProcessorNode is deprecated and AudioWorklet is merged. Therefore changes (or a new fork) required to accommodate AudioWorklet. Anybody started this, or shall we fork?

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.