Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Midi Library for Android [closed]

Tags:

android

midi

Been searching google for a midi library for android.Nothing seems to promising.

Anyone know of some midi libraries for Android?

like image 309
james Avatar asked May 30 '11 02:05

james


3 Answers

This is a simple but great sample application that successfully streams MIDI on Android https://github.com/billthefarmer/mididriver

You will have to put your MIDI messages together manually though ( the example creates two MIDI messages for play note and stop note). One can refer to the MIDI specification to further control the MIDI channels. The problem is that the default sound fonts on Android sound so bad.

like image 67
ABT Avatar answered Sep 17 '22 13:09

ABT


There's a bare bones Java MIDI library here on Google Code, source and all:

http://code.google.com/p/android-midi-lib/

It won't do any sound playback, but you can read, modify, and write MIDI files with fairly high-level method calls.

like image 20
LeffelMania Avatar answered Sep 17 '22 13:09

LeffelMania


According to the list of supported media types in the Android docs, MIDI playback support is built in. To play MIDI, you can use a JetPlayer. More details are in the JETCreator User Manual.

like image 24
Ted Hopp Avatar answered Sep 18 '22 13:09

Ted Hopp