Package 'rsay'

Title: Lets R on your Mac speak
Description: Provides a simple wrapper around the MacOS command line utility, 'say'. Sorry, this one is MacOS only.
Authors: Mark Sellors [aut, cre]
Maintainer: Mark Sellors <[email protected]>
License: MIT + file LICENSE
Version: 0.1.0
Built: 2024-11-07 02:39:43 UTC
Source: https://github.com/sellorm/rsay

Help Index


Make R on your Mac speak

Description

rsay is a simple wrapper around the MacOS command line tool, 'say'.

Details

The only function you're likely to need from rsay is speak.

Author(s)

Maintainer: Mark Sellors [email protected]

See Also

Useful links:


List of all the voices for the speak function

Description

A complete list of all the voices supported by the speak function.

Usage

available_voices

Format

A vector

Source

MacOS command line: 'say'


Speak your input text

Description

Speak your input text

Usage

speak(input, voice)

Arguments

input

A string

voice

An optional string matching a voice

The complete list of voices can be found in available_voices

Examples

## Not run: 
speak("hello world")
speak("Hello world", voice = "Samantha")

## End(Not run)