«Fifths (QuNeo demo)» by Bruno Ruviaro

on 21 May'15 21:56 in pbindmidiquneo

playing Pbinds with a MIDI controller (QuNeo, etc).

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// Running Fifths
// (QuNeo demo)
//
//
// Ctrl + A, then Ctrl + Enter

s.waitForBoot({

	MIDIIn.connectAll;

	a = Array.fill(8, {arg count; [count, count+7]  });

	f = {arg velocity, midinote;
		var notes = if(midinote>=44, {a.reverse+midinote}, {a+midinote});
		p = Pbind(
			\midinote, Pstutter(Pwrand([1, 3, 5], [0.1, 0.8, 0.1], inf), Pseq(notes)),
			\dur, 0.1,
			\amp, velocity/127 * 0.8,
			\legato, 0.1,
			\ctranspose, Pstutter(8, Pwhite(0, 36))
		).play(quant: 0.1);
	};

	MIDIdef.noteOn(\test, { arg vel, note; /*note.postln;*/ f.value(vel, note) });

});
raw 592 chars (focus & ctrl+a+c to copy)
reception
comments