View source: R/newTranscript.R
newTranscript | R Documentation |
This function adds a transcript and optionally a media file to the corpus.
newTranscript(
labbcat.url,
transcript,
media = NULL,
transcript.type = NULL,
corpus = NULL,
episode = NULL,
no.progress = FALSE
)
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(). |
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.
The ID of the new transcript in the corpus
transcriptUpload
transcriptUploadParameters
transcriptUploadDelete
updateTranscript
## Not run:
## 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")
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.