Rename to convert-txt2wav.ps1

This commit is contained in:
Markus Fleschutz 2021-04-14 14:16:15 +02:00
parent 392bfe11f8
commit f8ca4ed78b
3 changed files with 3 additions and 3 deletions

View File

@ -30,6 +30,7 @@ configure-git.ps1, sets up the Git user configuration
convert-csv2txt.ps1, converts the given CSV file into a text list
convert-mysql2csv.ps1, converts the MySQL database table to a CSV file
convert-sql2csv.ps1, converts the SQL database table to a CSV file
convert-txt2wav.ps1, converts text into a audio .WAV file
create-branch.ps1, creates a new branch in the current/given Git repository
create-shortcut.ps1, creates a shortcut
create-symlink.ps1, creates a symbolic link
@ -157,7 +158,6 @@ translate-files.ps1, translates the given text files into any supported language
translate-text.ps1, translates the given text into other languages
turn-volume-up.ps1, turns the audio volume up (+10% by default)
turn-volume-down.ps1, turns the audio volume down (-10% by default)
txt2wav.ps1, converts text into a audio .WAV file
unmute-audio.ps1, unmutes audio
upload-file.ps1, uploads the local file to the given FTP server
voice-control.ps1, executes the PowerShell scripts by voice

1 Script Description
30 convert-csv2txt.ps1 converts the given CSV file into a text list
31 convert-mysql2csv.ps1 converts the MySQL database table to a CSV file
32 convert-sql2csv.ps1 converts the SQL database table to a CSV file
33 convert-txt2wav.ps1 converts text into a audio .WAV file
34 create-branch.ps1 creates a new branch in the current/given Git repository
35 create-shortcut.ps1 creates a shortcut
36 create-symlink.ps1 creates a symbolic link
158 translate-text.ps1 translates the given text into other languages
159 turn-volume-up.ps1 turns the audio volume up (+10% by default)
160 turn-volume-down.ps1 turns the audio volume down (-10% by default)
txt2wav.ps1 converts text into a audio .WAV file
161 unmute-audio.ps1 unmutes audio
162 upload-file.ps1 uploads the local file to the given FTP server
163 voice-control.ps1 executes the PowerShell scripts by voice

View File

@ -5,6 +5,7 @@ Mega Collection of PowerShell Scripts
🔊 PowerShell Scripts for Audio & Voice
----------------------------------------
* [convert-txt2wav.ps1](Scripts/convert-txt2wav.ps1) - converts text into a audio .WAV file
* [mute-audio.ps1](Scripts/mute-audio.ps1) - mutes audio
* [play-beep.ps1](Scripts/play-beep.ps1) - plays a beep sound
* [play-mission-impossible.ps1](Scripts/play-mission-impossible.ps1) - plays the Mission Impossible theme
@ -22,7 +23,6 @@ Mega Collection of PowerShell Scripts
* [speak-test.ps1](Scripts/speak-test.ps1) - performs a speak test by text-to-speech (TTS)
* [speak-text.ps1](Scripts/speak-text.ps1) - speaks the given text by text-to-speech (TTS)
* [speak-time.ps1](Scripts/speak-time.ps1) - speaks the current time by text-to-speech (TTS)
* [txt2wav.ps1](Scripts/txt2wav.ps1) - converts text into a audio .WAV file
* [turn-volume-up.ps1](Scripts/turn-volume-up.ps1) - turns the audio volume up (+10% by default)
* [turn-volume-down.ps1](Scripts/turn-volume-down.ps1) - turns the audio volume down (-10% by default)
* [unmute-audio.ps1](Scripts/unmute-audio.ps1) - unmutes audio

View File

@ -1,6 +1,6 @@
#!/usr/bin/pwsh
<#
.SYNTAX txt2wav.ps1
.SYNTAX convert-txt2wav.ps1
.DESCRIPTION converts the given text into an audio .WAV file
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0