Nothing
# Helper function to retrieve the API Key
get_env_key = function(x) {
x = Sys.getenv(x)
if (is.null(x)) {
return(x)
}
if (x == "") {
return(NULL)
}
return(x)
}
#' Play audio in a browser
#'
#' This uses HTML5 audio tags to play audio in your browser. Borrowed from
#' \code{googleLanguageR::gl_talk_player()}.
#'
#' For more info, see this [Mozilla documentation](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/audio)
#' detailing the `<audio>` HTML element.
#'
#' @param audio The file location of the audio file. Must be supported by HTML5
#' @param html The html file location that will be created host the audio
#'
#' @return No return value, called for side effects
#' @export
#' @importFrom utils browseURL
#'
#' @examples
#' \dontrun{
#' # Opens a browser with embedded audio
#' play_audio(audio = "output.wav")
#' }
play_audio <- function(audio = "output.wav",
html = "player.html"){
# Write html code to a html file
writeLines(sprintf('<html><body>
<audio controls autoplay>
<source src="%s">
</audio>
</body></html>',
audio),
html)
# Load URL into browser
utils::browseURL(html)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.