windows 11 machine. I’m using Reaper as the DAW. I pretty sure I got it to work with Loopbe1 but can’t recreate it. I just got an Arturia MiniFuse 2 for the audio interface. I run the python code and nothing happens no error message. thanks in advance for any suggestions.
scamp says these are the available midi ports
MIDI Input Devices Available:
[Port 0]: MiniFuse 2 MIDI In 0
[Port 1]: LoopBe Internal MIDI 1
MIDI Output Devices Available:
[Port 0]: Microsoft GS Wavetable Synth 0
[Port 1]: MiniFuse 2 MIDI Out 1
[Port 2]: LoopBe Internal MIDI 2
and this is the python code.
from scamp import *
import random
s = Session(tempo=100)
print_available_midi_input_devices()
print_available_midi_output_devices()
drums = s.new_midi_part("Reed Organ", "MiniFuse 2 MIDI In", start_channel=1, num_channels=1)
theramin = s.new_midi_part("theramin", "MiniFuse 2 MIDI In", start_channel=2, num_channels=1)
bass = s.new_midi_part("slap bass", "MiniFuse 2 MIDI In", start_channel=3, num_channels=1)
while True:
drums.play_note(random.randint(36, 45), .7, random.uniform(0.2, 1.3))
theramin.play_note([80, 78], 0.7, random.uniform(0.2, 1.3))
bass.play_note(random.randint(36, 45), .7, random.uniform(0.2, 1.3))