All Articles

Listen and it shall Speak

headphones-yellow.jpg

Speak is a command line utility for reading text aloud or writing the audio data to file. Speak was created with the intention that it should do one thing well and work well with others. In that vein, you can couple Speak with other applications. In PowerShell, there is a PowerShell applet that can retrieve the contents of the clipboard. Speak is designed to allow piping input.

Usage

Basic

$ speak -t "speak now listen"

Pipe text

$ Get-Clipboard | speak

github