
Upload a new transcript
newTranscript.Rd
This function adds a transcript and optionally a media file to the corpus.
Usage
newTranscript(
labbcat.url,
transcript,
media = NULL,
transcript.type = NULL,
corpus = NULL,
episode = NULL,
no.progress = FALSE
)
Arguments
- labbcat.url
URL to the LaBB-CAT instance
- transcript
The path to the transcript to upload.
- media
The path to the media to upload, if any.
- transcript.type
The transcript type.
- corpus
The corpus to add the transcript to.
- episode
The transcript's episode.
- no.progress
TRUE to suppress visual progress bar. Otherwise, progress bar will be shown when interactive().
Details
NB This method of uploading is an alternative to using transcriptUpload and transcriptUploadParameters.
For this function to work, the credentials used to connect to the server must have at least 'edit' access.
Examples
if (FALSE) { # \dontrun{
## Get attributes for new transcript
corpus <- getCorpusIds(labbcat.url)[1]
transcript.type.layer <- getLayer(labbcat.url, "transcript_type")
transcript.type <- transcript.type.layer$validLabels[[1]]
## upload transcript
newTranscript(
labbcat.url, "my-transcript.eaf", "my-transcript.wav",
"", transcript.type, corpus, "episode-1")
} # }