Hello everyone.

The Mixed Reality Forums here are no longer being used or maintained.

There are a few other places we would like to direct you to for support, both from Microsoft and from the community.

The first way we want to connect with you is our mixed reality developer program, which you can sign up for at https://aka.ms/IWantMR.

For technical questions, please use Stack Overflow, and tag your questions using either hololens or windows-mixed-reality.

If you want to join in discussions, please do so in the HoloDevelopers Slack, which you can join by going to https://aka.ms/holodevelopers, or in our Microsoft Tech Communities forums at https://techcommunity.microsoft.com/t5/mixed-reality/ct-p/MicrosoftMixedReality.

And always feel free to hit us up on Twitter @MxdRealityDev.
Options

Hololens Tutorial 211 - voice input not working [SOLVED]

cahortoncahorton
edited May 2016 in Questions And Answers

I'm working my way through the tutorials and for some reason, the spoken elements of 211 (move astronaut, expand model) are not working even when I use the finished code. Is there some setting I may have missed that is required to get voice input to work?

"Hey Cortana" works, so I know the Hololens can hear me - it seems to be specific to the 211 app. Thanks in advance!

Best Answers

Answers

  • Options

    @gorgepir thanks for the suggestion - I ran with debugging on and sure enough, the problem was that the microphone capability was not set, just as @ahillier suggested. I solved the issue by pasting the following into the Package.appxmanifest right after the section in Visual Studio, though the Unity approach sounds easier:

      <Capabilities>
        <DeviceCapability Name="microphone"/>
      </Capabilities>
    

    Thanks both for your help! It now works.

  • Options

    I know this is an older thread, but I recently stumbled on a similar issue where the above didn't solve the problem.
    We eventually fixed the issue by disconnecting our bluetooth keyboard from the HoloLens device, and the software was able to register voice commands.

Sign In or Register to comment.