Package aws.transcribe

Similar documents
Package calpassapi. August 25, 2018

Package memoise. April 21, 2017

Package messaging. May 27, 2018

Package ECctmc. May 1, 2018

Package gtrendsr. October 19, 2017

Package facerec. May 14, 2018

Package data.world. April 5, 2018

Package opencage. January 16, 2018

Package GAR. September 18, 2015

Package rbraries. April 18, 2018

Package dbx. July 5, 2018

Package gtrendsr. August 4, 2018

Package available. November 17, 2017

Package AutoDeskR. July 10, 2017

Package farver. November 20, 2018

Package shinyhelper. June 21, 2018

Package genesysr. June 14, 2018

Package fastdummies. January 8, 2018

Package pwrab. R topics documented: June 6, Type Package Title Power Analysis for AB Testing Version 0.1.0

Package repec. August 31, 2018

Package ether. September 22, 2018

Package bigqueryr. October 23, 2017

Package condusco. November 8, 2017

Package imgur. August 29, 2016

Package deductive. June 2, 2017

Package githubinstall

Package datasets.load

Package SEMrushR. November 3, 2018

Package internetarchive

Package goodpractice

Package guardianapi. February 3, 2019

Package BiocManager. November 13, 2018

Package postgistools

Package promote. November 15, 2017

Package dkanr. July 12, 2018

Package RYoudaoTranslate

Package fitbitscraper

Package sessioninfo. June 21, 2017

Package censusapi. August 19, 2018

Package rdryad. June 18, 2018

Package PxWebApiData

Package cattonum. R topics documented: May 2, Type Package Version Title Encode Categorical Features

Package clipr. June 23, 2018

Package bigreadr. R topics documented: August 13, Version Date Title Read Large Text Files

Package oec. R topics documented: May 11, Type Package

Package patentsview. July 12, 2017

Package statsdk. September 30, 2017

Package dotcall64. January 11, 2018

Package bigqueryr. June 8, 2018

Package wikitaxa. December 21, 2017

Package darksky. September 20, 2017

Package SNPediaR. April 9, 2019

Package rwars. January 14, 2017

Package validara. October 19, 2017

Package robotstxt. November 12, 2017

Package strat. November 23, 2016

Package io. January 15, 2018

Package loggit. April 9, 2018

Package virustotal. May 1, 2017

Package rgho. R topics documented: January 18, 2017

Package mdftracks. February 6, 2017

Package UNF. June 13, 2017

Package ecoseries. R topics documented: September 27, 2017

Package dataverse. June 15, 2017

Package fingertipsr. May 25, Type Package Version Title Fingertips Data for Public Health

Package regexselect. R topics documented: September 22, Version Date Title Regular Expressions in 'shiny' Select Lists

Package msgtools. March 2, 2017

Package swatches. December 21, 2017

Package profvis. R topics documented:

Package SASmarkdown. R topics documented: November 30, Version Date Title 'SAS' Markdown

Package knitrprogressbar

Package pdfsearch. July 10, 2018

Package spark. July 21, 2017

Package humanize. R topics documented: April 4, Version Title Create Values for Human Consumption

Package testit. R topics documented: June 14, 2018

Package essurvey. August 23, 2018

Package RPresto. July 13, 2017

Package liftr. R topics documented: May 14, Type Package

Package eply. April 6, 2018

Package geojsonsf. R topics documented: January 11, Type Package Title GeoJSON to Simple Feature Converter Version 1.3.

Package httpcache. October 17, 2017

Package tm.plugin.lexisnexis

Package IRkernel. January 7, 2019

Package RODBCext. July 31, 2017

Package canvasxpress

Package BANEScarparkinglite

Package riingo. April 16, 2018

Package covr. October 18, 2018

Package librarian. R topics documented:

Package cloudml. June 12, 2018

Package crochet. January 8, 2018

Package tabulizer. June 7, 2018

Package gridgraphics

Package RWildbook. April 6, 2018

Package rgdax. January 7, 2019

Package lumberjack. R topics documented: July 20, 2018

Package textstem. R topics documented:

Package shinytest. May 7, 2018

Package rtext. January 23, 2019

Package jstree. October 24, 2017

Transcription:

Type Package Title Client for 'AWS Transcribe' Version 0.1.2 Date 2018-04-09 Package aws.transcribe April 9, 2018 Client for 'AWS Transcribe' <https://aws.amazon.com/documentation/transcribe>, a cloud transcription service that can convert an audio media file in English and other languages into a text transcript. License GPL (>= 2) URL https://github.com/cloudyr/aws.transcribe BugReports https://github.com/cloudyr/aws.transcribe/issues Imports tools, httr, jsonlite, aws.signature Suggests testthat, aws.s3 RoxygenNote 6.0.1 NeedsCompilation no Author Thomas J. Leeper [aut, cre] (<https://orcid.org/0000-0003-4097-6326>) Maintainer Thomas J. Leeper <thosjleeper@gmail.com> Repository CRAN Date/Publication 2018-04-09 15:50:28 UTC R topics documented: aws.transcribe-package................................... 2 get_transcription...................................... 2 list_transcriptions...................................... 3 start_transcription...................................... 4 transcribehttp....................................... 5 Index 6 1

2 get_transcription aws.transcribe-package aws.transcribe A Cloudyr Project Package Details This is a template package for the cloudyr project Author(s) Thomas J. Leeper <thosjleeper@gmail.com> See Also start_transcription, list_transcriptions, get_transcription get_transcription Get AWS Transcribe Job Retrieve a specific AWS Transcribe job get_transcription(job, download = TRUE,...) job A character string specifying the name of a job, possibly returned by list_transcriptions. download A logical indicating whether to download the transcription(s).... Additional arguments passed to transcribehttp. A list. See Also start_transcription, list_transcriptions

list_transcriptions 3 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) list_transcriptions List AWS Transcribe Jobs List AWS Transcribe jobs, by status list_transcriptions(status = c("completed", "IN_PROGRESS", "FAILED"), n = NULL, token = NULL,...) status n token A character string specifying the status of jobs to retrieve. Use get_transcription to retrieve a specific transcription. Optionally, a numeric value indicating the maximum number of results to return (for pagination). Optionally, a NextToken indicating the next result to retrieve (for pagination).... Additional arguments passed to transcribehttp. A list.

4 start_transcription Examples ## Not run: list_transcriptions("completed") ## End(Not run) start_transcription Start AWS Transcribe Job Start an AWS Transcribe job start_transcription(name, url, format = tools::file_ext(url), language = "en-us", hertz = NULL,...) name url format language hertz A character string specifying a unique name for the transcription job. A character string specifying a URL for the media file to be transcribed. A character string specifying the file format. One of: mp3, mp4, wav, flac. A character string specifying a language code. Currently defaults to en-us. Optionally, a numeric value specifying sample rate in Hertz.... Additional arguments passed to transcribehttp. A list containing details of the job. The transcript can be retrieved with get_transcription. See Also get_transcription 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") ## End(Not run)

transcribehttp 5 transcribehttp Execute AWS Transcribe API Request This is the workhorse function to execute calls to the Transcribe API. transcribehttp(action, query = list(), body = NULL, version = "v1", region = NULL, key = NULL, secret = NULL, session_token = NULL,...) action query body version region key Details secret session_token A character string specifying an API endpoint. An optional named list containing query string parameters and their character values. A request body A character string specifying the API version. A character string containing an AWS region. If missing, the default us-east-1 is used. A character string containing an AWS Access Key ID. The default is pulled from environment variable AWS_ACCESS_KEY_ID. A character string containing an AWS Secret Access Key. The default is pulled from environment variable AWS_SECRET_ACCESS_KEY. Optionally, a character string containing an AWS temporary Session Token. If missing, defaults to value stored in environment variable AWS_SESSION_TOKEN.... Additional arguments passed to GET. This function constructs and signs an Polly API request and returns the results thereof, or relevant debugging information in the case of error. If successful, a named list. Otherwise, a data structure of class aws-error containing any error message(s) from AWS and information about the request attempt. Author(s) Thomas J. Leeper

Index Topic package aws.transcribe-package, 2 aws.transcribe (aws.transcribe-package), 2 aws.transcribe-package, 2 GET, 5 get_transcription, 2, 2, 3, 4 list_transcriptions, 2, 3 start_transcription, 2, 4 transcribehttp, 2 4, 5 6