processZoomTranscript: Process Zoom transcript file

Description Usage Arguments Value Zoom Recording Transcript File Processing Examples

View source: R/processZoomTranscript.R

Description

Process Zoom transcript file

Usage

1
2
3
4
5
processZoomTranscript(
  fname,
  recordingStartDateTime = "1970-01-01 00:00:00",
  languageCode = "en"
)

Arguments

fname

String that is the path to the exported Zoom .vtt transcript chat file

recordingStartDateTime

String that is the timestamp when the recording was started in YYYY-MM-DD HH:MM:SS

languageCode

String denoting the language

Value

data.frame where each record is an utterance in the transcript, with columns:

Zoom Recording Transcript File Processing

This function parses the data from the transcript file (.vtt) that is downloaded from the Zoom website. NOTE: This is the file that accompanies a recording to the cloud.

Examples

1
2
3
tr.out = processZoomTranscript(
fname=system.file('extdata', 'meeting001_transcript.vtt', package = 'zoomGroupStats'), 
recordingStartDateTime = '2020-04-20 13:30:00', languageCode = 'en')

zoomGroupStats documentation built on May 13, 2021, 5:06 p.m.