Giter VIP home page Giter VIP logo

sympathetic-synth's Issues

Thanks :)

Just a quick note to say thanks.

For a little workshop/hackaton, I've hooked up your synth to a kinect - it just took 1.5 hours. If the synth wasn't already available, this would be impossible to do.

  1. We added Socket.io - it listens to playnote messages to play notes

  2. We created a NodeJS socket.io server, which converts Kinect Skeletal data to notes.

  3. We added a Socket.io Client to the Kinect Skeletal Demo to send data as JSON.

    Now, we could wave our hands and hear the synth playing in the browser :)

No sound

No sound is produced from clicking a key.
This is on Firefox 28 on Windows 7 64 bit.

Error - tsw.js:42 Uncaught TypeError: Cannot create property 'value' on number '0'

I'm getting this error in the console:

I am using Chrome on linux - Version 52.0.2743.82 (64-bit).

tsw.js:42 Uncaught TypeError: Cannot create property 'value' on number '0'

I found this error while looking at the online demo of Sympathetic synthesisor here

The issue seems to be caused by the face that 'reduction' is a read only float, and can't be changed, as it is in

 var applySettings = function (node, settings) {
       for (var setting in settings) {              
                node[setting].value = settings[setting];
        }
    };

I have been able to fix this with the following:

    var applySettings = function (node, settings) {
       for (var setting in settings) {
            if(typeof node[setting] === "object")
            {
                node[setting].value = settings[setting];
            }
        }
    };

This was working for me up until recently so I guess it's just for the latest version of Chrome (Version 52.0.2743.82 (64-bit)).

Since this relates to TSW I have created an issue there for tracking.

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.