-
-
Notifications
You must be signed in to change notification settings - Fork 544
Expand file tree
/
Copy pathconvert-txt2wav.ps1
More file actions
executable file
·33 lines (30 loc) · 935 Bytes
/
convert-txt2wav.ps1
File metadata and controls
executable file
·33 lines (30 loc) · 935 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<#
.SYNOPSIS
Converts text to a .WAV audio file
.DESCRIPTION
This PowerShell script converts text to a .WAV audio file.
.PARAMETER text
Specifies the text to use
.PARAMETER WavFile
Specifies the path to the resulting WAV 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($WavFile)
$SpeechSynthesizer.Speak($Text)
$SpeechSynthesizer.Dispose()
exit 0 # success
} catch {
"⚠️ ERROR: $($Error[0]) (script line $($_.InvocationInfo.ScriptLineNumber))"
exit 1
}