Hi!
Can anyone tell me where I can find a list of instruments aviliable in/supported by SCAMP?
Thanks!
Hi!
Can anyone tell me where I can find a list of instruments aviliable in/supported by SCAMP?
Thanks!
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:
s = Session(default_soundfont="someothersoundfont.sf2")
s.new_midi_part
s.new_osc_part
Hope that makes sense!
Yes it does - many Thanks!