2021-09-27 10:38:12 +02:00
|
|
|
|
<#
|
2021-08-08 11:02:12 +02:00
|
|
|
|
.SYNOPSIS
|
|
|
|
|
speak-quote.ps1
|
|
|
|
|
.DESCRIPTION
|
2021-09-27 08:35:45 +02:00
|
|
|
|
Speaks a random quote by text-to-speech (TTS)
|
2021-08-08 11:02:12 +02:00
|
|
|
|
.EXAMPLE
|
2021-09-27 08:35:45 +02:00
|
|
|
|
PS> ./speak-quote
|
2021-08-29 17:50:03 +02:00
|
|
|
|
.NOTES
|
|
|
|
|
Author: Markus Fleschutz · License: CC0
|
2021-08-08 11:02:12 +02:00
|
|
|
|
.LINK
|
|
|
|
|
https://github.com/fleschutz/PowerShell
|
|
|
|
|
#>
|
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
$Table = import-csv "$PSScriptRoot/../Data/quotes.csv"
|
|
|
|
|
$NumRows = $Table.count
|
|
|
|
|
|
|
|
|
|
$Generator = New-Object System.Random
|
|
|
|
|
$Index = [int]$Generator.next(0,$NumRows - 1)
|
|
|
|
|
$Quote = $Table[$Index].Quote
|
|
|
|
|
$Author = $Table[$Index].Author
|
|
|
|
|
|
|
|
|
|
& "$PSScriptRoot/speak-english.ps1" "$Quote (by $Author)"
|
2021-09-27 10:09:45 +02:00
|
|
|
|
exit 0 # success
|
2021-08-08 11:02:12 +02:00
|
|
|
|
} catch {
|
2021-09-16 20:19:10 +02:00
|
|
|
|
"⚠️ Error: $($Error[0]) ($($MyInvocation.MyCommand.Name):$($_.InvocationInfo.ScriptLineNumber))"
|
2021-08-08 11:02:12 +02:00
|
|
|
|
exit 1
|
|
|
|
|
}
|