The coremidi tag has no wiki summary.
3
votes
1answer
144 views
Notification from background thread in C callback
As my first Mac application, I'm building an app that displays incoming MIDI timecode.
Therefore, I am having an instance of the RtMidi "library" which wraps the MIDI in and out stuff.
The Mac OS Core ...
3
votes
1answer
264 views
Configure Mac OS X MIDI programatically
I'm writing a program that converts OSC into MIDI, allowing OSC enabled applications (like touchOSC on my iPhone) to control MIDI enabled applications (Sibelius, Ableton Live and so on).
I'm using ...
3
votes
1answer
296 views
MIDIPacketList, numPackets is always 1
I'm processing Midi on the iPad and everything is working fine and I can log everything that comes in and all works as expected. However, in trying to recieve long messages (ie Sysex), I can only get ...
2
votes
2answers
907 views
Cross Platform MIDI library supporting iOS CoreMIDI
I'm looking for a cross-platform C or C++ MIDI library. Just to send/receive MIDI note events, control codes and timing, not to generate sound.
The main target is iOS/iPad so it has to support ...
1
vote
0answers
50 views
CoreMidi with MacRuby
I am trying to use the CoreMidi.framework with MacRuby and I am getting hung up on the correct way to implement the CoreMidi mechanisms in Ruby. I have created the MIDIClient and the OutputPort:
...
1
vote
1answer
77 views
Parse Midi Packet
I'm having a hard time parsing Midi Packets. At times its 3 bytes then it can be 155 bytes on one stream.
How can I iterate through the massive packet and just get what I need?
Say for "b0" its only ...
1
vote
0answers
37 views
MIDI: cross-fade via channel volume message?
Using FM8.
I want to play the flute on channel 2 at volume 0 and the organ on channel 3 at full volume.
I want to then gradually reduce the volume of the organ and raise the volume of the flute.
The ...
1
vote
1answer
121 views
How do you retain uniqueness of virtual MIDI source from MIDISourceCreate()?
I'm working on a little hack sending MIDI messages from an app using RtMidi as a wrapper for CoreMIDI on OS X. I use RtMidiOut::openVirtualPort("MyAwesomePort") so I can select my app as an input ...
1
vote
1answer
174 views
CoreMIDI on the command line
I've started working on a command-line app based on RtMidi that can send arbitrary MIDI data. I've found that, while I can talk to MIDI devices when I run the tool from the console, if I ssh in to my ...
1
vote
1answer
99 views
What about CoreMIDI framework support in MonoTouch?
according to the Mono Documentation Library it seems that MonoTouch currently (3.2.5) doesn't support CoreMIDI framework (available in iOS 4.2, the version I'm working on).
Will CoreMIDI be supported ...
1
vote
1answer
245 views
CoreMidi _MIDINetworkNotificationContactsDidChange symbol not found
I'm getting the following error after a crash in an iPad app that uses CoreMIDI (The * are to blank out the app name):
Dyld Error Message:
Symbol not found: _MIDINetworkNotificationContactsDidChange
...
0
votes
1answer
28 views
Send midi note on/note off with velocity over wifi from iPad
Does anyone have example with iOS/Objective C, on how to send midi "note on/note off" signal (with different velocity) over wifi so that iPad would display in "Mac OS X->Audio Midi Setup->Network. ...
0
votes
1answer
15 views
MidiReadProc - using srcConnRefCon to listen to only one source
I am trying to write a basic app that uses CoreMidi to receive midi events from a specific source. I understand that all midi events that come into a port call the proc that I connected via ...
0
votes
1answer
133 views
CoreMidi : logging received midi messages to an NSTextField
Sorry, I don't speak English (I'm using Google Translate).
I'm very new to Xcode. I'm trying to write an app that can listen to received midi messages and show them in an NSTextField (just like a ...
0
votes
1answer
54 views
Pass Pointer to First Packet Between Methods (Obj-C)
I'm missing something here, but I'm not sure how to fix it. The first version of this works:
- (void) sendBytes:(const UInt8*)bytes size:(UInt32)size
{
Byte packetBuffer[size+100];
...
0
votes
1answer
121 views
How to program midi messages to HUI Pro Tools uses?
I found some specs online but It wouldn't work for Play.
I tried
const UInt8 noteOn[] = {0x90, 127}; and it didn't work.
Does anybody know what midi messages to HUI Pro Tools uses for play and ...
0
votes
1answer
120 views
OSX Core MIDI- Calling MIDIPacketListAdd from NSTimer
I'm sending a string of MIDI packets using MIDIPacketListAdd. I want to change the packets dynamically during playback, so I'm using a NSTimer to add each packet before the scheduled time the packet ...
0
votes
1answer
440 views
Play midi file or midi tone in iPhone with Xcode / Cocoa
I need to play midi file or midi tone in iPhone.
I have tested MidiMonitor. I think that I need to create a destination point on the iPhone to receive midi, but I don't know how do it.
Can you help ...
0
votes
0answers
92 views
Can't send data from a virtual source in iOS CoreMIDI
I am trying to send MIDI packets from one application to another on the same iPad using CoreMIDI (i.e. virtual sources and destinations in CoreMIDI parlance). If there is an app doing it properly ...
0
votes
0answers
79 views
CoreMIDI memory leaks?
I'm put together a CoreMIDI iOS app where I'm testing MIDINetSessionBrowser and MIDINetworkSession. I've been looking at this for a while now, and it appears that CoreMIDI has memory leaks.
Also, I ...
0
votes
2answers
255 views
How can I generate programmatically a MIDI event on iPad
I would like to test a MIDI app and want to generate some MIDI events without attaching a physical keyboard. Any hints?
0
votes
1answer
210 views
Translate to Objective-C from Objective-C++
I have this code in a .mm
void MyMIDINotifyProc(const MIDINotification *message, void *refCon);
which goes with this line
MIDIClientCreate((CFStringRef)@"MidiMonitor MIDI Client", MyMIDINotifyProc, ...