Exports a reactive array of length 256, corresponding to a fourier transform of the sound waves of your recoding. This is a frequently used format for running various speech recognition algorithms on. Future edditions will allow access to the raw data. You never directly use this function but instead call it through the shiny function `callModule()`. See the example for how to do this.

shinylistenr(input, output, session, button_text = "Record Audio",
  while_recording_text = "Stop Recording")

Arguments

input

you can ignore these as it is taken care of by shiny::callModule()

output

you can ignore these as it is taken care of by shiny::callModule()

session

you can ignore these as it is taken care of by shiny::callModule()

button_text

Text displayed on button before or after recording. Defaults to `"Record Audio"`.

while_recording_text

Text displayed on button while recording is in progress. Defaults to `"Stop Recording"`.

See also

Examples

if (FALSE) { callModule(shinylistenr, "myrecorder") }