Daniel Jones
Daniel Jones
I have a use case which requires support for filenames beginning with a dash (“-”). However, this is currently parsed as an extra argument, and causes sox/soxi to bail with...
On displays with a higher pixel density (e.g. MacBook Pro Retina displays), HTML canvas looks slightly fuzzy and pixellated by default. Can be fixed by using the window's `devicePixelRatio`, and...
Port 9000 is used by the WavesLocalServer process introduced earlier this year, which causes LiveOSC to silently fail. Set default port in LiveOSC and pylive to something else.
Custom config (e.g. `output_buffer_size`) can cause unit tests to break. Either make tests resilient to non-standard config, or ignore custom config when running tests.
On macOS, setting the sample rate to a non-default value is not currently supported. It should be a simple fix on line ~182 of graph.cpp: ``` if (this->sample_rate) { //...
On a system with two Python installs, in which the older of the two is the default, CMake will find and build with the newer (reported by kraysh). This causes...
Some units cannot initialise their values until they have been wired into the graph (see `signum/rnd/noise.cpp`). Implement an `init` method across the board which allows input and output units to...