flutter_tts icon indicating copy to clipboard operation
flutter_tts copied to clipboard

Flutter Text to Speech package

Results 159 flutter_tts issues
Sort by recently updated
recently updated
newest added

## 💬 Questions and Help I'm currently working on implementing a feature where the app should read the notification text when specific keys are present in the notification data. This...

## 🐛 Bug Report ## Configuration: await _ttsManager.setLanguage("en-US"); await _ttsManager.setSpeechRate(0.5); await _ttsManager.setVolume(1.0); await _ttsManager.setPitch(1.0); await _ttsManager.awaitSynthCompletion(true); if (Platform.isIOS) { await _ttsManager.setSharedInstance(true); await _ttsManager.setIosAudioCategory(IosTextToSpeechAudioCategory.playback, [ IosTextToSpeechAudioCategoryOptions.allowBluetooth, IosTextToSpeechAudioCategoryOptions.allowBluetoothA2DP, IosTextToSpeechAudioCategoryOptions.mixWithOthers, IosTextToSpeechAudioCategoryOptions.defaultToSpeaker ], IosTextToSpeechAudioMode.defaultMode...

## 🐛 Bug Report I got this exception in Crashlytics: ``` java.lang.NullPointerException: null at com.tundralabs.fluttertts.FlutterTtsPlugin.onInitListener$lambda$3(FlutterTtsPlugin.kt:229) at com.tundralabs.fluttertts.FlutterTtsPlugin.$r8$lambda$XaP8S28PtXzgWQDslTYZpfp1vzk at com.tundralabs.fluttertts.FlutterTtsPlugin$$ExternalSyntheticLambda1.onInit at android.speech.tts.TextToSpeech.dispatchOnInit(TextToSpeech.java:824) at android.speech.tts.TextToSpeech.-wrap4 at android.speech.tts.TextToSpeech$Connection$SetupConnectionAsyncTask.onPostExecute(TextToSpeech.java:2221) at android.speech.tts.TextToSpeech$Connection$SetupConnectionAsyncTask.onPostExecute(TextToSpeech.java:2214) at android.os.AsyncTask.finish(AsyncTask.java:727) at...

bug

## 💬 Questions and Help In case you are having issues with getting TTS working on iOS simulator, you most likely have not activated "Speak Selection". Here is how to...

synthesizeToFile is only extracts file in English although I am setting language before that action. await flutterTts!.setVoice({"name": "Karen", "locale": "tr-TR"}); await flutterTts!.setLanguage('tr-TR'); int result = await flutterTts!.synthesizeToFile(text, Platform.isAndroid ? filePath...

## 🐛 Bug Report ### Expected behavior The missing language is downloaded when needed. ### Reproduction steps Try to set a language which is not installed: await flutterTts.setLanguage("hu"); Start speech,...

## 💬 Questions and Help In general the plugin is working great, but I've found that for for example older iPhones and Samsung A-Series phones the TTS is not working...

## 💬 Questions and Help flutter_tts can't work when the app is turned to backgroud on iOS. Anyone know why can't work on iOS's bachground? flutter_tts 3.8.5 Flutter:3.10.6 iOS:16.4.1

## 🐛 Bug Report When I run the app on Windows or the web, it works well, but the TTS Crashes when I try to Speak on macOS. ### Expected...

## 🐛 Bug Report I just run the example project on my iPhone [ERROR:flutter/runtime/dart_vm_initializer.cc(41)] Unhandled Exception: MissingPluginException(No implementation found for method setEngine on channel flutter_tts) #0 MethodChannel._invokeMethod (package:flutter/src/services/platform_channel.dart:332:7) #1 FlutterTts.setEngine...