gianlucaelia
gianlucaelia
## Environment * SuperCollider version: 3.12.2 * Operating system: Windows ## Steps to reproduce ```supercollider File.getcwd ``` ## Expected vs. actual behavior On Linux, `File.getcwd` gives the path sclang was...
PanAz was having a small leak into adjacent-to-focused channels, due to both an imprecision in sc_reciprocal and in ft->mSine. This fixes it without touching either of the two. ## Purpose...
## Purpose and Motivation When calling `.thresh` on a Signal, the supplied threshold is squared: ```supercollider Signal.sineFill(1024, [1]).thresh(0.5).reject(_==0).minItem // -> ~0.25 // Signal.thresh zeroes out everything below threshold.squared? // as...
Tartini crashes when destroyed, if n < blockSize * 4 Reproducer: ```supercollider s.options.blockSize = 256; s.waitForBoot { x = {Tartini.kr(SinOsc.ar, 0.93, 512)}.play; s.sync; x.free; // Server crashes when x is...
It would be great to have an auto-reconnect feature, in case of accidental unplug of a device during a performance. Here is how I see it could be done: -...
Platform: Arch Linux, x86 When building and installing from source, it is a prerequisite to build faust static and dynamic libraries. In order to do that, Build/README.md instructs to build...
## Environment * SuperCollider version: 3.13dev * Operating system: Arch Linux * Other details (Qt version, audio driver, etc.): ## Steps to reproduce ```supercollider s.boot; b = { Buffer.read(s, Platform.resourceDir...
This works: ``` { var start = [1,2]; SuperPlayBuf.ar(1,b,1,1,0, start*BufSampleRate.ir(b), start+1*BufSampleRate.ir(b) ) }.play ``` This doesn't: ``` { var start = [1,2]; SuperPlayBufX.ar(1,b,1,1,0, start*BufSampleRate.ir(b), start+1*BufSampleRate.ir(b) ) }.play ``` ``` The...
Example code: ```supercollider b = Buffer.alloc(s,s.sampleRate*3600*2); ( { var start = 3600, superStart = 3601; var in = SinOsc.ar(10); BufWr.ar(in, b, Phasor.ar(0, 1, start*BufSampleRate.ir(b), (start+1)*BufSampleRate.ir(b)) ); SuperBufWr.ar(in, b, SuperPhasor.ar(0, 1,...
Once we have SuperBufRd, why not SuperBufWr as well?