我正在用R做一个动画,它的工作原理。但是我无法将其保存为视频。我用saveVideo尝试了一切并得到了这个错误: sh:ffmpeg:找不到命令 系统错误(粘贴(ffmpeg,“ - version”),intern = TRUE): 运行命令错误
我死了文档所说的一切,没有什么
saveVideo({
for(i in 1:100){ tst< - read.csv(paste(“RES_job”,i,“。csv”,sep =“”),header = F)
x <- tst$V1
y <- tst$V2
x1 <- tst$V3
y1 <- tst$V4
cc <- tst$V6[1]
sr <- tst$V7[1]
par(mar = rep(4, 4))
plot(x,y,pch=46, xlab="Females", ylab="Males",frame.plot=F,
main=paste("Mode = P-M" , "cc = ", cc , "OSR = ", sr))
Arrows(x,y,x1,y1,arr.length = 0.15,lwd=2,arr.width = 0.1,
arr.adj=1, arr.type = "curved")
ani.pause(0.1)
} },video.name =“test_png.mp4”,other.opts =“ - b 1000k”)