Magick conversion - possible won't be in final version of 'nara' pkg

nrs_to_mp4(nr_list, filename, verbose = FALSE, ...)

Arguments

nr_list

list of nativeRasters

filename

mp4 filename

verbose

logical. default FALSE

...

other arguments passed to magick::image_write_video()

Value

None.

Examples

if (FALSE) { # interactive() && requireNamespace("magick", quietly = TRUE)
im <- magick::logo
nr1 <- magick_to_nr(im)
nr2 <- nr_duplicate(nr1)
nrs_to_mp4(list(nr1, nr2), "nothing.mp4")
}