Update speak-quote.ps1

This commit is contained in:
Markus Fleschutz 2021-10-07 11:04:44 +02:00 committed by GitHub
parent 4bcce0a10e
commit fbf1007ca1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,10 +1,11 @@
<# <#
.SYNOPSIS .SYNOPSIS
Speaks a random quote by text-to-speech (TTS) Speaks a random quote by text-to-speech
.DESCRIPTION .DESCRIPTION
speak-quote.ps1 This script selects a random quote in Data/quotes.csv and uses text-to-speech (TTS) for output.
.EXAMPLE .EXAMPLE
PS> ./speak-quote PS> ./speak-quote
(listen and learn)
.NOTES .NOTES
Author: Markus Fleschutz · License: CC0 Author: Markus Fleschutz · License: CC0
.LINK .LINK
@ -13,10 +14,9 @@
try { try {
$Table = import-csv "$PSScriptRoot/../Data/quotes.csv" $Table = import-csv "$PSScriptRoot/../Data/quotes.csv"
$NumRows = $Table.count
$Generator = New-Object System.Random $Generator = New-Object System.Random
$Index = [int]$Generator.next(0,$NumRows - 1) $Index = [int]$Generator.next(0, $Table.Count - 1)
$Quote = $Table[$Index].Quote $Quote = $Table[$Index].Quote
$Author = $Table[$Index].Author $Author = $Table[$Index].Author