This R package provides the ingest functionality for the audioBlast! project. This includes harvesting of data from external sources, processing of these data sets, and upload of the processed data to audioBlast!.
library(devtools)
install_github("audioblast/audioBlastIngest")
The ingest function requires a DBI object.
library(devtools)
library(RMariaDB)
library(audioBlastIngest)
db <- dbConnect(RMariaDB::MariaDB(),
user='audioblast_ingest',
password='password',
dbname='audioblast',
host='localhost',
port=3306)
ingestR(db)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.