mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-08 17:14:28 +01:00
30 lines
814 B
PowerShell
Executable File
30 lines
814 B
PowerShell
Executable File
<#
|
|
.SYNOPSIS
|
|
convert-txt2wav.ps1 [<text>] [<wav-file>]
|
|
.DESCRIPTION
|
|
Converts the given text to a .WAV audio file
|
|
.EXAMPLE
|
|
PS> .\convert-txt2wav.ps1 "Hello World" spoken.wav
|
|
.LINK
|
|
https://github.com/fleschutz/PowerShell
|
|
.NOTES
|
|
Author: Markus Fleschutz / License: CC0
|
|
#>
|
|
|
|
param([string]$Text = "", [string]$WavFile = "")
|
|
|
|
try {
|
|
if ($Text -eq "") { $Text = read-host "Enter text to speak" }
|
|
if ($WavFile -eq "") { $WavFile = read-host "Enter .WAV file to save to" }
|
|
|
|
Add-Type -AssemblyName System.Speech
|
|
$SpeechSynthesizer = New-Object System.Speech.Synthesis.SpeechSynthesizer
|
|
$SpeechSynthesizer.SetOutputToWaveFile($tWavFile)
|
|
$SpeechSynthesizer.Speak($Text)
|
|
$SpeechSynthesizer.Dispose()
|
|
exit 0
|
|
} catch {
|
|
write-error "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
|
exit 1
|
|
}
|