get_transcription {aws.transcribe} | R Documentation |
Retrieve a specific AWS Transcribe job
get_transcription(job, download = TRUE, ...)
job |
A character string specifying the name of a job, possibly returned by |
download |
A logical indicating whether to download the transcription(s). |
... |
Additional arguments passed to |
A list.
start_transcription
, list_transcriptions
## Not run: # start a transcription ## upload a file to S3 library("aws.s3") put_object(file = "recording.mp3", bucket = "my-bucket", object = "recording.mp3") ## start trancription start_transcription("first-example", "https://my-bucket.us-east-1.amazonaws.com/recording.mp3") ## wait Sys.sleep(5) ## retrieve transcription transcript <- get_transcription("first-example") transcript$Transcriptions ## End(Not run)