vosk-flutter
vosk-flutter copied to clipboard
We can fix it by returning speechService if it exists instead of `result.error("INITIALIZE_FAIL", "SpeechService instance already exist.", null);`
When using the library in flutter everything works fine, but when I do a hot restart, suddenly this error occurs. I initialize the speech service using vosk.initSpeechService() in a separate...
Hi, How can I get VOSK-IOS connected to flutter? Thank you
import 'dart:async'; import 'dart:convert'; import 'dart:developer'; import 'dart:io'; import 'dart:typed_data'; import 'package:edolms/modules/screens/student/ai/conversation/chat/functions/model/vosk_result_model.dart'; import 'package:flutter/services.dart'; import 'package:vosk_flutter/vosk_flutter.dart'; class VoskTranscriber { late VoskFlutterPlugin _vosk; Recognizer? _recognizer; SpeechService? _speechService; Model? _model; String? _error;...
`import 'dart:developer'; import 'dart:io'; import 'dart:typed_data'; import 'package:flutter/services.dart'; import 'package:vosk_flutter/vosk_flutter.dart'; class VoskTranscriber { late VoskFlutterPlugin _vosk; Recognizer? _recognizer; VoskTranscriber() { initializeVosk(); } Future initializeVosk() async { Model? _model; const _sampleRate...
In my opinion, we should separate the recognition process and the audio recording process. ## Motivation There are already a bunch of Flutter plugins for recording from a microphone(https://pub.dev/packages?q=microphone) and...
Hi! I try to use vosk on flutter isolate but got error `Binding has not yet been initialized.` Is there any way to use vosk in other isolate?
I'm using this for a windows voice assistant desktop app. it works fine as is with bluetooth headphones. but not working if we talk directly to laptop microphone. we can...
Most packages depend on the new dependency which prohibit using `vosk-flutter` with other packages
Hello, Thank you for this incredible software! As for the issue, I keep getting the following exception when running the example Android Flutter app: `E/AndroidRuntime(10886): FATAL EXCEPTION: WM.task-2 E/AndroidRuntime(10886): Process:...