Hi
I’m trying to use Juno for Atom on Windonws 10 64 using the following code
using Plots
anim = Animation()
p = plot([sin,cos], 0, π, size=(300,300))
scatter!([0], [sin,cos])
for i in 0:0.1:π
p[3] = [i], [sin(i)]
p[4] = [i], [cos(i)]
frame(anim)
end
gif(anim)
But as an output I keep getting ERROR: LoadError: IOError: could not spawn
ffmpeg -v 0 -i ‘C:\Users\Hugo\AppData\Local\Temp\jl_5751.tmp/%06d.png’ -vf palettegen=stats_mode=diff -y ‘C:\Users\Hugo\AppData\Local\Temp\jl_5751.tmp/palette.bmp’: no such file or directory (ENOENT)
I have downloaded ffmpeg, changed the path in the env variables but it still does not work. ffmpeg -version
works in the power shell but it doesn’t in the command prompt.
Hope someone will be able to get me out of this trouble…