Description Usage Arguments Details Value Examples
Given equal length vectors of paths to images (preferably .jpgs
or .pngs) and strings which will be synthesized by
Amazon Polly or
any other synthesizer available in
tts, this function creates an
.mp4 video file where each image is shown with
its corresponding narration. This function uses ari_stitch to
create the video.
1 2 3 4 5 6 7 8 9 |
images |
A vector of paths to images. |
paragraphs |
A vector strings that will be spoken by Amazon Polly. |
output |
A path to the video file which will be created. |
voice |
The voice you want to use. See
|
service |
speech synthesis service to use,
passed to |
subtitles |
Should a |
... |
additional arguments to |
This function needs to connect to
Amazon Web Services in order to create the
narration. You can find a guide for accessing AWS from R
here.
For more information about how R connects
to Amazon Polly see the aws.polly] documentation
here.
The output from ari_stitch
1 2 3 4 5 6 7 8 9 10 | ## Not run:
slides <- system.file("test", c("mab2.png", "mab1.png"),
package = "ari")
sentences <- c("Welome to my very interesting lecture.",
"Here are some fantastic equations I came up with.")
ari_spin(slides, sentences, voice = "Joey")
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.