
Creates an empty emuDB in the target directory specified
create_emuDB(
name,
targetDir,
mediaFileExtension = "wav",
store = TRUE,
verbose = TRUE
)
of new emuDB
target directory to store the emuDB to
defines mediaFileExtention (NOTE: currently only 'wav' (the default) is supported by all components of EMU)
store new created emuDB to file system
display infos & show progress bar
Creates a new directory [name]_emuDB in targetDir. By default the emuDB is created in the R session, written to the filesystem and then purged from the R session.
if (FALSE) {
# create empty emuDB in folder provided by tempdir()
create_emuDB(name = "myNewEmuDB",
targetDir = tempdir())
}
Run the code above in your browser using DataLab