Hi!
Thinking on developing a MIDI sequencer/arpeggiator/chorder plugin, I have a couple questions:
1) There are some virtual-keyboard you can put on screen for user to work (or watch sequencer in action)?
2) There are some component you can arrange on screen to make some "drop midi to track in daw"?
3) There are some code function you can use to save midi to disk, or open/import midi files?
4) There are an easy/quick way to use "scales" (standard as major, minor or any other)?
5) In general, for this project I'd like to make about a sequencer/arpeggiator, Plug'n Script offers other components/pre-made-code to make it simple to develop?
Regards,
Javier.-
About MIDI related projects Features
-
- KVRer
- 4 posts since 16 Oct, 2021
-
Blue Cat Audio Blue Cat Audio https://www.kvraudio.com/forum/memberlist.php?mode=viewprofile&u=39981
- KVRAF
- 6343 posts since 8 Sep, 2004 from Paris (France)
Plug'n Script offers platform to build plug-ins, but it currently does not have many built-in components, so you will have to build your own.
You can reuse the basic built-in GUI components (buttons, knobs etc.) or even build your own components with CANVAS elements (letting you draw on screen by yourself).
There is currently no facility to read/write MIDI files. You can maybe find some C++ source code that could be translated into scripts though, but that's a bit of work.
You can reuse the basic built-in GUI components (buttons, knobs etc.) or even build your own components with CANVAS elements (letting you draw on screen by yourself).
There is currently no facility to read/write MIDI files. You can maybe find some C++ source code that could be translated into scripts though, but that's a bit of work.
-
- KVRer
- Topic Starter
- 4 posts since 16 Oct, 2021
Thanks for your response!