0

I looking to develop a synth with python and Pyo. I'd like to use my computer keyboard as a midi keyboard to play melodies.

How can I fake my computer keyboard as a midi keyboard?

thx

fraba
  • 1
  • 1

1 Answers1

0

There are many virtual midi keyboard you can install.
On Linux, using jack:

More generally, search for "virtual midi keyboards" for your particular OS.

Charles Langlois
  • 4,198
  • 4
  • 16
  • 25
  • Ok but can I use directly my keyboard without installing this kind of software? – fraba Nov 02 '16 at 14:06
  • What do you mean? Pyo is a library to program instruments using the python language. It can understand midi input and use it to control the instruments and effects you use in your program. Then sending the program midi information will affect its behavior(e.g. the pitch, amplitude of the notes). Your computer keyboard doesn't by itself generate midi information. You have to convert your keyboard's signals to midi information, and you need a virtual midi interface to do that. – Charles Langlois Nov 05 '16 at 08:25