ryukau
ryukau
So `tempo` and `ticksPerBeat` can be used to get the length of the tick in seconds. ```c++ auto ticksPerSecond = bbt.ticksPerBeat * bbt.beatsPerMinute / 60; auto secondsPerTick = 1.0 /...
Hi. I have another question. I'm trying to make a CV plugin which outputs trigger signal at the start of bar/beat. I wrote a code like following: ```c++ void run(const...
Thanks for the answer. I tested more and found that the code on previous comment breaks when tempo is changed. I looked up [LV2 metronome example](https://github.com/lv2/lv2/blob/8e651d28aec21fefebbfc0746826b76172506902/plugins/eg-metro.lv2/metro.c#L271), and it seems like...
I'd like to say thanks for your works. DPF and Carla made my plugin development far easier. Just one thing, I know a person who got mentally ill for working...
@jpcima Thanks for pointing out. I didn't know the coordinate convension in cairo. For my reference, it's documented in [here](https://www.cairographics.org/FAQ/#sharp_lines). However, ±0.5 is adding a offset relative to other 2D...
@jpcima The patch breaks the code using `CDrawContext::Transform`. On my plugins, everything except texts are translated to somewhere invisible. I tried the change below to `pixelAlign` on the patch and...
Thanks for the answer. I looked into faustpp code, and it's using faust's `-xml` option to get UI information. For my use case, the generated xml file is good enough....
Okay this is too much. The above account says "my project", but the linked repository has no relation to @RustoMCSpit . I now blocked above account.
Thanks for this experimentation. I'd love to use this modulation, but if it's hard to implement I'm OK with omitting it in `master`. Currently, envelope -1 output is added to...
> Why do you think that? I used [sisco](https://github.com/x42/sisco.lv2), and waveform looked like that. I tested with following steps: 1. Set one of the `filter->main->mix->->level` to 1. 2. Set `filter->main->tweak->freq`...