Moved .ps1 files to subdir Scripts/

This commit is contained in:
Markus Fleschutz
2020-05-22 13:08:48 +00:00
parent 20eae280f8
commit 413e1f1fc8
11 changed files with 0 additions and 0 deletions

20
Scripts/txt2wav.ps1 Executable file
View File

@ -0,0 +1,20 @@
# PowerShell Script to Convert Text to Audio WAV files
# ----------------------------------------------------
# Author: Markus Fleschutz
# Source: github.com/fleschutz/PowerShell
# License: CC0
# Configuration:
$Text = "Hello, my name ist Bond, James Bond"
$Speed = -1 # -10 is slowest, 10 is fastest
$TargetWavFile = "spoken.wav"
# Run:
Add-Type -AssemblyName System.Speech
$SpeechSynthesizer = New-Object System.Speech.Synthesis.SpeechSynthesizer
# $SpeechSynthesizer.SelectVoice("Microsoft Eva Mobile")
$SpeechSynthesizer.Rate = $Speed
$SpeechSynthesizer.SetOutputToWaveFile($TargetWavFile)
$SpeechSynthesizer.Speak($Text)
$SpeechSynthesizer.Dispose()
exit 0