https://github.com/tysonstanley/wavfeatures
https://github.com/tysonstanley/wavfeatures
Last synced: 7 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/tysonstanley/wavfeatures
- Owner: TysonStanley
- Created: 2024-10-27T22:54:26.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2024-10-30T04:40:03.000Z (12 months ago)
- Last Synced: 2025-04-11T01:54:20.044Z (7 months ago)
- Language: R
- Size: 17.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.Rmd
Awesome Lists containing this project
README
---
output: github_document
---
```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```
# `wavfeatures`
The goal of `wavfeatures` is to extract features of a `.wav` file. For now, it is just the syllable nuclei.
## Installation
You can install the development version of wavfeatures like so:
``` r
remotes::install_github("tysonstanley/wavfeatures")
```
## Example
This is a basic example:
```{r, eval=FALSE}
library(wavfeatures)
get_syllables_ps(path)
```
Can use other arguments to control the calculations
```{r, eval=FALSE}
get_syllables_ps(path, threshold = -30, keep_intermediates = TRUE)
```