mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-08-15 07:12:44 +02:00
Renamed folder Scripts to scripts
This commit is contained in:
27
scripts/speak-text.ps1
Executable file
27
scripts/speak-text.ps1
Executable file
@ -0,0 +1,27 @@
|
||||
<#
|
||||
.SYNOPSIS
|
||||
Speaks text by the default text-to-speech voice
|
||||
.DESCRIPTION
|
||||
This PowerShell script speaks the given text by the default text-to-speech (TTS) voice.
|
||||
.PARAMETER text
|
||||
Specifies the text to read
|
||||
.EXAMPLE
|
||||
PS> ./speak-text.ps1 Hi
|
||||
.LINK
|
||||
https://github.com/fleschutz/PowerShell
|
||||
.NOTES
|
||||
Author: Markus Fleschutz | License: CC0
|
||||
#>
|
||||
|
||||
param([string]$text = "")
|
||||
|
||||
try {
|
||||
if ($text -eq "") { $text = Read-Host "Enter the text to speak" }
|
||||
|
||||
$Voice = new-object -ComObject SAPI.SPVoice
|
||||
[void]$Voice.Speak($text)
|
||||
exit 0 # success
|
||||
} catch {
|
||||
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
||||
exit 1
|
||||
}
|
Reference in New Issue
Block a user