processZoomOutput {zoomGroupStats}R Documentation

Wrapper function to process the raw files from Zoom in a single call

Description

The user provides a fileRoot that is used for a given meeting. Output files should be named as fileRoot_chat.txt; fileRoot_transcript.vtt; and fileRoot_participants.csv. Any relevant files will be processed.

Usage

processZoomOutput(
  fileRoot,
  rosetta = TRUE,
  sessionStartDateTime = "1970-01-01 00:00:00",
  recordingStartDateTime = "1970-01-01 00:00:00",
  languageCode = "en"
)

Arguments

fileRoot

string giving the path to the files and the root

rosetta

boolean to produce the rosetta file or not

sessionStartDateTime

string giving the start of the session in YYYY-MM-DD HH:MM:SS

recordingStartDateTime

string giving the start of the recording in YYYY-MM-DD HH:MM:SS

languageCode

string giving the language code

Value

a named list containing data.frames for each of the available files:

Examples

zoomOut = processZoomOutput(fileRoot=file.path(
system.file('extdata', package = 'zoomGroupStats'),"meeting001"
), rosetta=TRUE)
## Not run: 
zoomOut = processZoomOutput(fileRoot="~/zoomMeetings/myMeeting", rosetta=TRUE)

## End(Not run)

[Package zoomGroupStats version 0.1.0 Index]