Martin Roth

Results 57 comments of Martin Roth

In the worst case you can also try deleting the `~/.heavy` directory, which will remove the token file.

Hi all, I'm very sorry. We've had ridiculous server stability problems that we thought that we had solved. It's back up right now and I'm babysitting it. The server stability...

Hi @travisfoo. Just so that I understand, you are using SDL2 on _Android_? I didn't know that was a thing. Otherwise of course there is [OpenSLES](https://developer.android.com/ndk/guides/audio/opensl/index.html) and the new (recommended)...

I believe, at the moment the `[+]` object (or any of the arithmetic objects) don't support the `bang` message. Your workaround would be the "correct" way of working around it.

Thanks for such a helpful bug report @jrdooley. Can you tell me if it works if you connect the left outlet of `notein` (instead of the middle)? If it does...

Ok "super". Are you familiar with how to use the [uploader script](https://enzienaudio.com/docs/index.html#03.uploader#stable-releases)? I have a fix in the `dev` release. As for the "double trigger" issue, could it be that...

You can download the uploader script [here](https://enzienaudio.com/static/uploader.py). Currently we simply pass though whatever MIDI data the DAW sends us (in the case of note off). Potentially you could look at...

Yes, that's absolutely correct. You'll want something like: ```c++ case 0x80: { // note off _context->sendMessageToReceiverV(0x67E37CA3, // __hv_notein 1000.0*vste->deltaFrames/sampleRate, "fff", (float) data0, // pitch 0.0f, // force zero velocity on...