mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-03-29 16:16:47 +01:00
Rename to convert-txt2wav.ps1
This commit is contained in:
parent
392bfe11f8
commit
f8ca4ed78b
@ -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-csv2txt.ps1, converts the given CSV file into a text list
|
||||||
convert-mysql2csv.ps1, converts the MySQL database table to a CSV file
|
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-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-branch.ps1, creates a new branch in the current/given Git repository
|
||||||
create-shortcut.ps1, creates a shortcut
|
create-shortcut.ps1, creates a shortcut
|
||||||
create-symlink.ps1, creates a symbolic link
|
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
|
translate-text.ps1, translates the given text into other languages
|
||||||
turn-volume-up.ps1, turns the audio volume up (+10% by default)
|
turn-volume-up.ps1, turns the audio volume up (+10% by default)
|
||||||
turn-volume-down.ps1, turns the audio volume down (-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
|
unmute-audio.ps1, unmutes audio
|
||||||
upload-file.ps1, uploads the local file to the given FTP server
|
upload-file.ps1, uploads the local file to the given FTP server
|
||||||
voice-control.ps1, executes the PowerShell scripts by voice
|
voice-control.ps1, executes the PowerShell scripts by voice
|
||||||
|
|
@ -5,6 +5,7 @@ Mega Collection of PowerShell Scripts
|
|||||||
|
|
||||||
🔊 PowerShell Scripts for Audio & Voice
|
🔊 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
|
* [mute-audio.ps1](Scripts/mute-audio.ps1) - mutes audio
|
||||||
* [play-beep.ps1](Scripts/play-beep.ps1) - plays a beep sound
|
* [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
|
* [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-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-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)
|
* [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-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)
|
* [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
|
* [unmute-audio.ps1](Scripts/unmute-audio.ps1) - unmutes audio
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
#!/usr/bin/pwsh
|
#!/usr/bin/pwsh
|
||||||
<#
|
<#
|
||||||
.SYNTAX txt2wav.ps1
|
.SYNTAX convert-txt2wav.ps1
|
||||||
.DESCRIPTION converts the given text into an audio .WAV file
|
.DESCRIPTION converts the given text into an audio .WAV file
|
||||||
.LINK https://github.com/fleschutz/PowerShell
|
.LINK https://github.com/fleschutz/PowerShell
|
||||||
.NOTES Author: Markus Fleschutz / License: CC0
|
.NOTES Author: Markus Fleschutz / License: CC0
|
Loading…
Reference in New Issue
Block a user