Run {howler}
Example Applications
runHowlerExample(example = "basic", display.mode = "showcase", ...)
availableHowlerExamples()
Name of the example to load. Current examples include:
Basic example of howler
in use
Basic example of using all buttons available in howler
Example of using the howlerModule
Example showing server-side functionality
The mode in which to display the application. By default set to "showcase"
to show
code behind the example.
Optional arguments to send to shiny::runApp
This function does not return a value; interrupt R to stop the application (usually by pressing Ctrl+C or Esc).
availableHowlerExamples()
#> 'base64', 'basic', 'full', 'module', 'server', 'two_players', 'upload'
if (interactive()) {
library(shiny)
library(howler)
runHowlerExample("basic")
}