0

I'm writing a software synth in Linux using libasound. I want to control it with a MIDI keyboard.

I have some working code using snd_seq_open() and snd_seq_event_input() but it only creates a virtual MIDI port. I have to go to the commandline and type "aconnect 20 128" to route the MIDI data to my app.

How can I get my code to either set up the connection by itself or connect directly to the MIDI hardware?

Adam Pierce
  • 33,531
  • 22
  • 69
  • 89

1 Answers1

2

You have to create the connection with a function like snd_seq_connect_from().

See, for example, the aseqdump source code.

CL.
  • 173,858
  • 17
  • 217
  • 259