2020-12-29 15:14:21 +01:00
|
|
|
<#
|
2021-07-13 21:10:02 +02:00
|
|
|
.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
|
2020-12-29 15:14:21 +01:00
|
|
|
#>
|
2020-11-06 15:30:14 +01:00
|
|
|
|
2021-04-15 08:52:28 +02:00
|
|
|
param($Text = "", $WavFile = "")
|
|
|
|
if ($Text -eq "") { $Text = read-host "Enter text to speak" }
|
|
|
|
if ($WavFile -eq "") { $WavFile = read-host "Enter .WAV file to save to" }
|
2020-11-06 15:30:14 +01:00
|
|
|
|
|
|
|
try {
|
|
|
|
Add-Type -AssemblyName System.Speech
|
|
|
|
$SpeechSynthesizer = New-Object System.Speech.Synthesis.SpeechSynthesizer
|
2021-04-15 08:52:28 +02:00
|
|
|
$SpeechSynthesizer.SetOutputToWaveFile($tWavFile)
|
2020-11-06 15:30:14 +01:00
|
|
|
$SpeechSynthesizer.Speak($Text)
|
|
|
|
$SpeechSynthesizer.Dispose()
|
|
|
|
exit 0
|
2020-12-09 10:30:55 +01:00
|
|
|
} catch {
|
2021-05-02 21:30:48 +02:00
|
|
|
write-error "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
2020-12-09 10:30:55 +01:00
|
|
|
exit 1
|
|
|
|
}
|