gpt4 book ai didi

r - 导入 png 文件并在 R 中转换为动画(.mp4)

转载 作者:行者123 更新时间:2023-12-04 22:45:06 27 4
gpt4 key购买 nike

我正在尝试用 R 中的几个 png 文件创建一个简短的动画。我尝试了包 magick但它仅在我将它们保存为 .gif 时才有效。当我尝试另存为 .mp4 时,它会生成一个 .mp4 文件,但一旦打开它,只会显示第一个图像。

我的代码是

  library(magick)
productPath <- ('/Users/abc/Desktop/products/')
list <- list.files(productPath, '*.png')
imagesPath <- paste0(productPath, list)
images <- image_read(imagesPath)
animation <- image_animate(images, fps = 20, loop = 1)
image_write(animation, paste0(productPath, 'test.mp4'))

我发现还有一个包叫 animation ,但我真的不知道如何使用该包导入 png 文件。有什么解决办法吗?任何一个包都应该没问题。谢谢!

最佳答案

选择的最佳答案需要您安装ffmpeg第一的。如果您还没有,并且由于管理权限有限,您无法在您的 PC 上安装其他程序,您可以尝试 av包裹。

这无需安装任何其他程序即可工作。

av::av_encode_video(list.files(productPath, '*.png'), framerate = 30,
output = 'test.mp4')

关于r - 导入 png 文件并在 R 中转换为动画(.mp4),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51310892/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com