Yotam Mann

Results 84 comments of Yotam Mann

Was thinking about something like this for checking reachability: ```typescript function reachesNode(current: IAudioNode, goal: IAudioNode): boolean { if (current === goal) { return true; } else { const connections =...

there was an issue with the dependency and node versions. i just updated the package.json and readme to describe the exact working configuration. try a clean reinstall by removing node_modules...

reading your logs, it seems like everything installed and built ok. those messages in the terminal are all just logging info and a couple of warnings, but no errors from...

Thanks for the bug report. It sounds to me like this issue is because we used mp3 files for all of the audio files which Chromium usually does not support.

Yeah, as we mentioned in the REAMDE, this is entirely without audio files. So if you want to get it running locally, you'll need to add files and change a...

oh! good catch. i meant to comment that out and uncomment the [code above it](https://github.com/googlecreativelab/inside-music/blob/master/audio/stems/split.py#L25) which uses ffmpeg which would be able to run on any platform.

@Jemusic Is this when you first drop the plugin on a track or when you open up a saved session? When the plugin is added to your session for the...

Each Context has one Transport created with it, so you could create multiple Tone.Context's. You might run into browser implementation constraints. For example, i know Safari can only have something...

that's weird. it works fine for me on my teensy++ 2.0. what hardware are you using?