๋ณธ๋ฌธ ๋ฐ”๋กœ๊ฐ€๊ธฐ
  • Tried. Failed. Logged.
๐Ÿง์šด์˜์ฒด์ œ/Windows

์œˆ๋„์šฐ - text to speech(text2speech), ๋ชฉ์†Œ๋ฆฌ ๋ฐ ์–ธ์–ด ๋ณ€๊ฒฝํ•˜๊ธฐ

by Janger 2022. 11. 5.
728x90
์‚ฌ์šฉ ๊ฐ€๋Šฅํ•œ ๋ชฉ์†Œ๋ฆฌ๋“ค ํ™•์ธํ•˜๊ธฐ
Add-Type -AssemblyName System.Speech
$speak = New-Object System.Speech.Synthesis.SpeechSynthesizer
$speak.GetInstalledVoices() | 
  Select-Object -ExpandProperty VoiceInfo | 
  Select-Object -Property Culture, Name, Gender, Age

 

๋ชฉ์†Œ๋ฆฌ ์„ค์ • ๋ฐ ์ถœ๋ ฅ
Add-Type -AssemblyName System.speech
$speak = New-Object System.Speech.Synthesis.SpeechSynthesizer
$speak.SelectVoice('Microsoft Heami Desktop')
$speak.Speak('์•ˆ๋…•ํ•˜์„ธ์š”.')

 

์ถœ์ฒ˜: 

https://community.idera.com/database-tools/powershell/powertips/b/tips/posts/speech-week-using-different-voices-with-speech-synthesizer

 

Speech-Week: Using Different Voices with Speech Synthesizer

In the previous tip we showed how you can tap into the text to speech converter and speak out text. Here is a way to find out the installed languages on your system

community.idera.com

 

728x90