flutter_midi

Creator: coderz1093

Last updated:

Add to Cart

Description:

flutter midi

flutter_midi #
A FLutter Plugin to Play midi on iOS and Android. This uses SoundFont (.sf2) Files.
Online Demo: https://rodydavis.github.io/flutter_midi/
Installation #
Download a any sound font file, example: sound_font.SF2 file.
Create an /assets folder and store the .sf2 files
Update pubspec.yaml
assets:
- assets/sf2/Piano.SF2
- assets/sf2/SmallTimGM6mb.sf2
copied to clipboard
Load the sound font to prepare to play;
@override
void initState() {
load('assets/sf2/Piano.SF2');
super.initState();
}

void load(String asset) async {
FlutterMidi.unmute(); // Optionally Unmute
ByteData _byte = await rootBundle.load(asset);
FlutterMidi.prepare(sf2: _byte);
}
copied to clipboard
Play and Stop the Midi Notes
FlutterMidi.playMidiNote(midi: 60);

FlutterMidi.stopMidiNote(midi: 60);
copied to clipboard

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files:

Customer Reviews

There are no reviews.