user13095937
user13095937

Reputation: 9

Vuzix Speech SDK language support

I want to program an Android App for my Vuzix m300 smart glasses. Using the Vuzix Speech Recognition SDK I want the App to recognize number words in german. In the official docu is mentioned that one should have the correct language recognition files loaded. Where can I find these files and how can I load them?

here is the link to the documentation: https://vuzix-website.s3.amazonaws.com/files/Content/Upload/sdk-speechrecognitionservice-javadoc-1.5_v2.zip

The files are mentioned at 'insertPrase'

Upvotes: -1

Views: 474

Answers (1)

Vincent Guigui
Vincent Guigui

Reputation: 11

I ran in the same issue I think,

You first need to change the Language of the Vuzix (in Settings/Language), in theory the right speech recognition language will be loaded. You can see in the log the actual localized voice commands by doing a

sc = VuzixSpeechClient(this.activity)
sc.dump()

In practice: - you may need to reboot the glass just after changing the language to force a refresh - we have no info on the speech recognition performance and expected pronunciation, so it is a lot of trials/errors

Upvotes: 1

Related Questions