mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-23 00:13:36 +01:00
24 lines
519 B
PowerShell
Executable File
24 lines
519 B
PowerShell
Executable File
#!/snap/bin/powershell
|
|
|
|
# Syntax: ./speak-file.ps1 [<file>]
|
|
# Description: speaks the content of the given text file by text-to-speech (TTS)
|
|
# Author: Markus Fleschutz
|
|
# Source: github.com/fleschutz/PowerShell
|
|
# License: CC0
|
|
|
|
param([string]$File)
|
|
if ($File -eq "") {
|
|
$File = read-host "Enter path to file"
|
|
}
|
|
|
|
try {
|
|
$Text = Get-Content $File
|
|
|
|
$voice = New-Object ComObject SAPI.SPVoice
|
|
$voice.Speak($Text);
|
|
exit 0
|
|
} catch {
|
|
Write-Error "ERROR in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
|
exit 1
|
|
}
|