Question
Voice Selection on HoloLens 2
I'm using the synthesize speech functionality on the HoloLens 2 to read text programatically.
Is there a way to change the voice from the default robotic sounding voice to Cortana or some other voice?
Using the code below:
function SayText(text) {
$timeout(function(){
$scope.app.speech.synthesizeSpeech( {'text': text });
}, 1500 )
}

