View source: R/duration_sound_files.R
duration_sound_files | R Documentation |
duration_sound_files
measures the duration of sound files
duration_sound_files(
files = NULL,
path = NULL,
skip.error = FALSE,
file.format = "\\.wav$|\\.wac$|\\.mp3$|\\.flac$"
)
files |
Character vector with the names of the sound files to be measured. The sound files should be in the working directory or in the directory provided in 'path'. |
path |
Character string containing the directory path where the sound files are located. |
skip.error |
Logical to control if errors are omitted. If so, files that could not be read will return |
file.format |
Character string with the format of sound files. By default all sound file formats supported by warbleR are included ("\.wav$|\.wac$|\.mp3$|\.flac$"). Note that several formats can be included using regular expression syntax as in |
This function returns the duration (in seconds) of sound files.
A data frame with the duration (in seconds) of the sound files.
Marcelo Araya-Salas (marcelo.araya@ucr.ac.cr)
Araya-Salas, M., & Smith-Vidaurre, G. (2017). warbleR: An R package to streamline analysis of animal acoustic signals. Methods in Ecology and Evolution, 8(2), 184-191.
{
data(list = c("Phae.long1", "Phae.long2", "Phae.long3"))
writeWave(Phae.long1, file.path(tempdir(), "Phae.long1.wav"))
writeWave(Phae.long2, file.path(tempdir(), "Phae.long2.wav"))
writeWave(Phae.long3, file.path(tempdir(), "Phae.long3.wav"))
duration_sound_files(path = tempdir())
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.