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 me? Example source code would be useful.

link|improve this question
feedback

2 Answers

If you are still trying to sort this, iOS 5 includes the MusicPlayer API - it can load, play and create midi files. You'll need to also read up on the new AUSampler AudioUnit.

link|improve this answer
feedback

Try using AVAudioPlayer, but i'm not sure it works with midi files:

NSString*path = [[NSBundle mainBundle] pathForResource:@"musicfile" ofType:@"midi"];
NSURL* url = [NSURL fileURLWithPath:path];
AVAudioPlayer *player = [[AVAudioPlayer alloc] initWithContentsOfURL:url error:NULL];

If it does not work. You'll to delve deeper to Core Audio - (AVAudioPlayer is much higher in level of abstraction).

link|improve this answer
It did not work – Ignacio Ocampo Jun 26 '11 at 17:43
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.