flutter_tflite_audio
flutter_tflite_audio copied to clipboard
Audio classification Tflite package for flutter (iOS & Android). Can support Google Teachable Machine models
Hi, could you use this library to run openai whisper with a tflite model? In the examples there are always labels provided, but for whisper there would not be any...
Hi, How to continuously recognize audio and stop recognize audio when clicks on the mic icon button.
Hi, @Caldarie can I add the predicted label with score or value as shown in the image below Can you please help with this, it would be appreciated ![screenshot-developers google...
## Hello, i being able to perform extractions of MFCCs with a lot of performance on android smartphones. I advise you to look at an implementation I made in this...
``` Future startListningClap(BuildContext context) async { // if service already running if (await FlutterForegroundTask.isRunningService) { setForceStopFlashlight(false); return Timer.periodic(const Duration(milliseconds: 500), (Timer ct) { try { clapAudioSubscriber.cancel(); } catch (_) {}...
Hi, Is there a way to manage multiple output models? I am trying to implement this model indeed: https://colab.research.google.com/github/tensorflow/tensorflow/blob/master/tensorflow/lite/g3doc/models/modify/model_maker/audio_classification.ipynb which is based on Yamnet model and generates 2 outputs: first...
Why does the stream only run once.....??? ``` recognitionStream.listen((event) { print(listening'); }, ); ```
Hi, I have a dumb question. My model receives outputs of `librosa.load(audio_file, sr=16000)` as inputs. How can I reproduce it with your code? Thank you.
My Tensorflow model which I trained using teachable machines has a size of 5MB but after adding the model and flutter_tflite_audio package, my app size increased from 20MB to 54MB....
Hi, first of all thanks for the awesome project, especially the clear readme that walk me through the journey. I would like to ask whether this plugin expose the API...