flutter_midi
flutter_midi copied to clipboard
Midi Playback in Flutter
Hi. i've been trying to use the flutter_midi package to build a simple flutter app. If i try to build the app i get following error message: /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/core_ext/kernel_require.rb:54:in `require': dlopen(/Library/Ruby/Gems/2.6.0/gems/ffi-1.15.5/lib/ffi_c.bundle,...
If I play same/different midi notes fastly, they won't sound in synced with my button press/touches. Sounds lags. Could we fix this issue.?
Hi, First, thanks for the great library! I'm trying to have two different modes in my app, one using a percussion .sf2 file and another for bass with a different...
There's a significant delay on my Android between pressing a button and hearing the sound. How can I try to make it faster?
I can't seem to schedule notes on/off using Future.delayed. Am I doing something wrong? Future load(String asset, FlutterMidi midiPlayer) async { midiPlayer.unmute(); // Optionally Unmute ByteData _byte = await rootBundle.load(asset);...
I noticed the example is built on web, but I can't get the plugin to work on chrome, I get MissingPluginException. Is there any support for web published in the...
If we call `unmute()` method using await feature, it'll just block a program execution: ```dart void _load(String asset) async { await f.unmute(); //
Hello! I'm unable to use plugin with other plugins that require newer path provider. Could you update it?
Are there any plans to build in support for flutter apps running on macos? Thannks
Running Flutter 1.26.0-2.0.pre-406 together with the latest Android tools, the flutter_midi app won't compile as the build.gradle is set to 28. When manually changing it to 29 my app compiles....