MIDI - Week 11 Fall 2023 MUS 499C - Intro to SuperCollider

  Рет қаралды 807

Eli Fieldsteel

Eli Fieldsteel

Күн бұрын

Пікірлер: 6
@afrodo
@afrodo 10 ай бұрын
Fantastic tutorial!. I'm just wondering how I would go about mapping two control knobs to the X and Y slider in a Slider2D object?
@elifieldsteel
@elifieldsteel 10 ай бұрын
Something like this? MIDIIn.connectAll; ( var ccx = 0, ccy = 1; // change these to desired MIDI controller numbers ~s2d = Slider2D.new().front; MIDIdef.cc(\x, {|n| {~s2d.x_(n/127)}.defer }, ccx); MIDIdef.cc(\y, {|n| {~s2d.y_(n/127)}.defer }, ccy); )
@natan77777
@natan77777 6 ай бұрын
I really appreciate those videos, they helped me a lot! I still have an issue with using my MIDI controller with supercollider: The latency is too big and I can't find any way to make it reasonable. Did anyone ever encounter this? (I'm using windows)
@elifieldsteel
@elifieldsteel 6 ай бұрын
This question would probably be better answered by someone who’s actually had this problem and fixed it. My experience is mostly limited to macOS. I suspect this is a hardware/driver issue, unrelated to your controller or SC. I would guess using a dedicated audio/MIDI interface might be a solution. Some questions: If you simply print (postln) the incoming MIDI data in SC, is the latency still present? Or does the latency only happen when using MIDI to generate sound? Does this latency happen in other audio/MIDI software, like a DAW? Or only SC? Doing some investigating and answering questions like this can sometimes help isolate the source of the problem.
@MemphianSounds
@MemphianSounds 3 ай бұрын
( MIDIdef.noteOn( ote, { arg val, num; [val, num].postln; ~notes.at(num) = Synth(\saw, [ freq:num.midicps, amp: val.linlin(0,127,-40,-6).dbamp ]); }); ) Running this piece of the code I get a Syntax Error saying that the '=' in line 4 is unexpected and that a '}' is expected. Anyone else face this issue?
@elifieldsteel
@elifieldsteel 3 ай бұрын
Took me a few minutes to figure this out! I think the issue is that the 'at' method is only designed as a getter, but you're trying to use it as a setter, and I guess this just isn't allowed by design. But fortunately, the fix is easy. Instead of: ~notes.at(num) = Synth(...); you can do this: ~notes[num] = Synth(...); or this: ~notes.put(num, Synth(...)) Here's a simplified demonstration of the problem and solution: n = [4]; n.at(0) = 5; // fails n[0] = 6; // works n.put(0, 7); // also works
Live Coding - Week 12 Fall 2023 MUS 499C - Intro to SuperCollider
47:47
БУ, ИСПУГАЛСЯ?? #shorts
00:22
Паша Осадчий
Рет қаралды 2,6 МЛН
Trick-or-Treating in a Rush. Part 2
00:37
Daniel LaBelle
Рет қаралды 45 МЛН
Ice Cream or Surprise Trip Around the World?
00:31
Hungry FAM
Рет қаралды 16 МЛН
Signal Flow - Week 9 Fall 2023 MUS 499C - Intro to SuperCollider
55:47
The easiest guide to Hyprland | Hyprland Part 1
20:38
Friendly Alien
Рет қаралды 1 М.
F is for FFT
14:30
Dylan Beattie
Рет қаралды 7 М.
PlayBuf & BufRd - Week 6 Fall 2023 MUS 499C - Intro to SuperCollider
53:29
Routines & Clocks - Week 7 Fall 2023 MUS 499C - Intro to SuperCollider
50:43
Introducing 0DE5
39:38
Kay Lack
Рет қаралды 107 М.