View source: R/export_textgrid.R
export_textgrid | R Documentation |
Advice: In most situations it is more convenient to use act::corpus_export
for exporting annotation files.
export_textgrid(
t,
outputPath = NULL,
filterTierNames = NULL,
filterSectionStartsec = NULL,
filterSectionEndsec = NULL
)
t |
Transcript object; transcript to be saved. |
outputPath |
Character string; path where .TextGrid will be saved. |
filterTierNames |
Vector of character strings; names of tiers to be included. If left unspecified, all tiers will be exported. |
filterSectionStartsec |
Double; start of selection in seconds. |
filterSectionEndsec |
Double; end of selection in seconds. |
The .TextGrid file will be written to the file specified in outputPath
.
If outputPath
is left empty, the function will return the contents of the .TextGrid itself.
Contents of the .TextGrid file (only if outputPath
is left empty)
corpus_export
, export_eaf
, export_exb
, export_printtranscript
, export_rpraat
, export_srt
library(act)
# Get the transcript you want to export
t <- examplecorpus@transcripts[[1]]
# Create temporary file path
path <- tempfile(pattern = t@name, tmpdir = tempdir(),
fileext = ".TextGrid")
# It makes more sense, however, to you define a destination folder
# that is easier to access on your computer:
## Not run:
path <- file.path("PATH_TO_AN_EXISTING_FOLDER_ON_YOUR_COMPUTER",
paste(t@name, ".TextGrid", sep=""))
## End(Not run)
# Export
act::export_textgrid(t=t, outputPath=path)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.