Notifications
Clear all
MIDI Software
3
Posts
3
Users
0
Reactions
8,209
Views
Topic starter
Do anyone know if there is some sort of midi "software port" for android to chain application data, i try to make a plain sequenser. But without the ability to route the data to something that produce sound i guess i would have to try produce some simple sound device myself within sequenser.
JT
Posted : 22/01/2020 7:57 pm
See the android.media.midi package:
The Android MIDI package allows users to:
[…]
- Generate MIDI messages in one app and send them to a second app.
By default, Android does not include a synthesizer that can receive such MIDI messages.
Posted : 23/01/2020 3:19 am
The scenario for your use case would be to develop your sequencer as a client, and a synthesizer as a service. There are a number of ready to use open source synthesizers for Android.
- My NativeGMSynth based on SonivoxEAS
- Simple example MIDI Synth service, by Phil Burk
- FluidSynth SoundFont based synthesizer
Posted : 23/01/2020 11:00 am