Loading Windows.phone.Speech into PowerShell -


so have been poking around looking way use cortana (mainly voice although commands nice too) in windows powershell. yes aware speech recognition , speech synthesis quite easy system.speech. that's not goal

so far can load winrt components syntax:

[fulltypenameincludingnamespace,namespace,contenttype=windowsruntime] website here: http://karlprosser.com/coder/2014/04/06/winrt-and-powershell-part-1/

looking through windows api found here: http://msdn.microsoft.com/en-us/library/windows/apps/br211377.aspx

i see there both windows.media.speechsynthesis , windows.phone.speech.synthesis

now tried windows.media.speechsynthesis , seems work; however, seems same system.speech code:

returns same voices used system.speech

this leaves me assume cortana in windows 10 using windows.phone.speech.synthesis , here voice located elsewhere. trouble is, when trying use windows.phone.speech.synthesis [windows.phone.speech.synthesis.installedvoices,windows.phone.speech.synthesis,contenttype=windowsphoneruntime]

i following error: unable find type [windows.phone.speech.synthesis.installedvoices,windows.phone.speech.synthesis, contenttype=windowsphoneruntime]. make sure assembly contains type loaded.

this comes related windows.phone. guess not available on pc, how/where cortana located windows 10 , how can accessed? or referencing component wrong?


Comments

Popular posts from this blog

java - Spring Data JPA: Why findOne(id) executing delete query internally? -

python - Mongodb How to add addtional information when aggregating? -

java - Incorrect order of records in M-M relationship in hibernate -