×
×

Python in Arabic 39 Speech Recognition التعرف على الكلام تحويل الكلام الى نص


للتعرف على اللغة العربية: import speech_recognition as sr # Record Audio r = sr.Recognizer() with sr.Microphone() as source: print("Say something!") audio = r.listen(source) # Speech recognition using Google Speech Recognition try: print("You said: " + r.recognize_google(audio,language ="ar-AR")) except sr.UnknownValueError: print("Google Speech Recognition could not understand audio") except sr.RequestError as e: print("Could not request results from Google Speech Recognition service; {0}".format(e)) https://www.simplifiedpython.net/speech-recognition-python/ https://pythonprogramminglanguage.com/speech-recognition/ https://www.geeksforgeeks.org/speech-recognition-in-python-using-google-speech-api/ https://pythonspot.com/personal-assistant-jarvis-in-python/

فيديوهات ذات صلة

×

يجب ان يكون لديك حساب داخل المنصة
حتى تستطيع المشاركة و التفاعل مع التعليقات

سجل الآن مجانا