| get_transcription {aws.transcribe} | R Documentation | 
Get AWS Transcribe Job
Description
Retrieve a specific AWS Transcribe job
Usage
get_transcription(job, download = TRUE, ...)
Arguments
| 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  | 
Value
A list.
See Also
start_transcription, list_transcriptions
Examples
## 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)
[Package aws.transcribe version 0.1.3 Index]