Android Question Voice Recognition in Romanian Language

ThePuiu

Active Member
Licensed User
Longtime User
Is there a possibility to use voice recognition in Romanian?
I have tried some examples found on the forum that run more or less well in English, but none of them go to Romanian ...
 

ThePuiu

Active Member
Licensed User
Longtime User
I found ... before you have to set the phone to use the Romanian language in recognition...

I apologize for not having tried more before asking ...
 
Upvote 0

ThePuiu

Active Member
Licensed User
Longtime User
it is possible to change the voice recognition phone settings from the B4A application?
 
Upvote 0

ThePuiu

Active Member
Licensed User
Longtime User
Accessibility -> Preferred engine: Google Text to speech engine
and
Accessibility -> Language Romanian

I hope that only these have to be changed to accept the speech in Romanian.
 
Upvote 0

rboeck

Well-Known Member
Licensed User
Longtime User
You can set your language in voice recognition in such way:
B4X:
Dim VR As VoiceRecognition
VR.Initialize("VR")
VR.Prompt=loc.Localize("Your prompt:")
        
VR.Language="ro"
VR.Listen
 
Upvote 0
Top