Open satchmorun opened 12 years ago
Does your computer have any MIDI devices? This is what would happen if it didn't... I could probably do better error reporting there of course
You can check what devices CoreMIDI is recognizing by running "unimidi list" at the command line or UniMIDI::Device.list in Ruby
UniMIDI::Device.list returns an empty array.
I was under the impression that OSX has built-in MIDI devices. Ah, I had to turn on the IAC driver.
I'm mainly interested in the output anyway.
Sorry for another very noob question, but how do you send midi messages to headphones/speakers?
OSX can route MIDI messages from one application to another but you'll need to activate that in order to see it represented with unimidi at all
Here's a blog post I did on it a while back
http://tx81z.blogspot.com/2011/06/osx-unimidi-and-midi-patch-bay.html
MIDI messages are just data -- you would need to send them to some sort of sound generator to generate sounds. For instance, sending MIDI from unimidi to Ableton Live or GarageBand would be one way to achieve this
I'm going to change the title of this issue to "improve device selection error messages" and use it as a reminder to do that
I'm trying out your micromidi library and when I try to run the example in the readme, I get an error when using the
use
method:I'm on OSX Lion, running ruby 1.9.2. Is there something I'm missing?
Another strange thing: i couldn't even get it to
require 'midi'
until i installed the alsa-rawmidi, midi-jruby and midi-winmm gems. The first i understand, but seems like some platform detection might not be working correctly for the latter two.