ari_spin {ari} | R Documentation |
Create a video from images and text
Description
Given equal length vectors of paths to images (preferably .jpg
s
or .png
s) 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.
Usage
ari_spin(
images,
paragraphs,
output = tempfile(fileext = ".mp4"),
voice = text2speech::tts_default_voice(service = service),
service = "amazon",
subtitles = FALSE,
...
)
Arguments
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 |
Details
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.
Value
The output from ari_stitch
Examples
## 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)