Flutter Speech To Text Easy Tutorial - بالعربي
ฝัง
- เผยแพร่เมื่อ 30 พ.ย. 2024
- In this tutorial, I'll walk you through the process of building a speech-to-text app using Flutter and Dart.
We'll utilize the Speech To Text plugin available on pub.dev to achieve this. Whether you're just starting with Flutter or already have some experience, this guide will assist you in setting up and navigating through the development process.
Here's what we'll cover:
Installing the speech to text package from pub.dev.
Setting up the package properly for both iOS and Android platforms.
Implementing voice recognition functionality for iOS and Android devices.
By the end of this tutorial, you'll have a functional speech-to-text app ready to use.
Resources:
Speech To Text Package: pub.dev/packag... Socials: linktr.ee/muha...
فيديوهاتك رائعه شكرا ليك
جاااااااامد ❤❤❤❤ .. استمر
جامد بس حاول متستخدمش موسيقى ❤
عيني
هل جربت تضيف اللغة العربية بس تكون offline؟
الاجابة تهمني...
البكدج مبتدعمش العربي للأسف
@@muhabgamalx2 لا هي بتدعم العربي بس online
عن تجربه
@@muhabgamalx2 جميل يا هندسه
اريد مساعدتك يا باش مهندس
شكرا ليك ياهندسة على مجهودك بعد بحث الحمد لله لقيت فيها عربى ولغات تانيه
Future startListening() async {
var locales = await speech.locales();
// for (var n in locales) {
// print(n.localeId);
// print(n);
// print(n.name);
// }
var selectedLocale = locales[6];
speech.listen(
onResult: (result) {
setState(() {
recognizedText = result.recognizedWords;
});
},
localeId: selectedLocale.localeId,
);
setState(() {
isListening = true;
});
}
هنا اللوب ده ممكن تعرف index البلد او اللغه بس رقم 6 هو مصر
هل تقدر انك تغير اللغة الى اللغة العربية ؟
لا مش بتدعمها
شكرا ليك ياهندسة على مجهودك بعد بحث الحمد لله لقيت فيها عربى ولغات تانيه
Future startListening() async {
var locales = await speech.locales();
// for (var n in locales) {
// print(n.localeId);
// print(n);
// print(n.name);
// }
var selectedLocale = locales[6];
speech.listen(
onResult: (result) {
setState(() {
recognizedText = result.recognizedWords;
});
},
localeId: selectedLocale.localeId,
);
setState(() {
isListening = true;
});
}
هنا اللوب ده ممكن تعرف index البلد او اللغه بس رقم 6 هو مصر
هل هذه طريقة تشتغل في ويب ؟