praat_open {speakr}R Documentation

Open files with 'Praat'.

Description

It opens a file or list of files in the 'Praat' GUI.

Usage

praat_open(...)

Arguments

...

A character vector with the path to the file. Include multiple vector arguments to open multiple files.

Value

Nothing. Used for its side effects.

Examples

## Not run: 
# Open a single file

script <- system.file("extdata", "get-formants.praat", package = "speakr")
praat_open(script)

# Open multiple files

wav <- system.file("extdata", "vowels.wav", package = "speakr")
tg <- system.file("extdata", "vowels.TextGrid", package = "speakr")
praat_open(wav, tg)

## End(Not run)


[Package speakr version 3.2.2 Index]