YPares
YPares
This gives Arpligner an option to derive a scale from the current chord, following jazz improv method described in https://www.youtube.com/watch?v=Ro2dVvwzKNs, and therefore enables patterns to be mapped to this scale's...
Re-mapping poly aftertouch events should be just as simple as remapping the note offs (after all those two MIDI messages differ by only 1 bit), however on my `aftertouch` branch...
https://github.com/YPares/arpligner/actions/runs/4090909288/jobs/7054650202 The goal is to get Arpligner to build as standalone exe for usual raspberry pi OSs, and as LV2 for the Zynthian platform. See https://discourse.zynthian.org/t/gui-less-polyphonic-arp-plugin-buildable-to-lv2/7711/1 for context
Currently, playing chords live doesn't play super great with the default "latch & transpose" behaviour (for management of 0-note and 1-note situations on the chord channel) The user has to...
Hello! I was wondering if you planned on porting this for Godot4 and gdrust-gdext, or if another project was covering that? :)
After updating to a recent nih-plug commit (`b3038b458c35a620fbc07b65a7261693f6e68e0e`), I'm getting this right when running the standalone version of the basic template from https://github.com/robbert-vdh/nih-plug-template (with a main that just runs `nih_plug::nix_export_standalone::`):...
The following code ```rust fn main() -> Result { let host = cpal::host_from_id(cpal::HostId::Asio)?; let device = host .default_output_device() .ok_or("No output device available")?; println!("Output device: {}", device.name()?); let def_output_cfg = device.default_output_config()?;...
I'm making a devenv setup to provide python and spaCy (which depends on zlib and libstdc++). I ended up with: ``` # devenv.nix { pkgs, ... }: { packages =...
To circumvent https://github.com/cachix/devenv/issues/889, I'm pre-processing some requirements.txt files with runCommand. I've managed to do it with: ``` { pkgs, ... }: let reqs = pkgs.runCommand "genReqs" {} '' mkdir $out...