It opens a file or list of files in the 'Praat' GUI.
praat_open(...)
A character vector with the path to the file. Include multiple vector arguments to open multiple files.
Nothing. Used for its side effects.
if (FALSE) {
# 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)
}