Instruments

Hi!

Can anyone tell me where I can find a list of instruments aviliable in/supported by SCAMP?

Thanks!

1 Like

If you have a Session object, s, run:

s.print_default_soundfont_presets()

That will give you a list of instruments available.

That said, you can use all sorts of other instruments by:

  • loading a different soundfont by creating a session like this: s = Session(default_soundfont="someothersoundfont.sf2")
  • creating a MIDI part with s.new_midi_part
  • creating an OSC part with s.new_osc_part

Hope that makes sense!

2 Likes

Yes it does - many Thanks!