ari_spin: Create a video from images and text

Description Usage Arguments Details Value Examples

View source: R/ari_spin.R

Description

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.

Usage

1
2
3
4
5
6
7
8
9
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 tts_voices for more information about what voices are available.

service

speech synthesis service to use, passed to tts. Either "amazon" or "google".

subtitles

Should a .srt file be created with subtitles? The default value is FALSE. If TRUE then a file with the same name as the output argument will be created, but with the file extension .srt.

...

additional arguments to ari_stitch

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

 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)

ari documentation built on Feb. 9, 2020, 1:07 a.m.