我用gnuplot制作了png图像:
avconv -r $1 -i M%05d.png -c:v libx264 final_simulation.mp4
然后我使用avconv制作电影:
String path = new File("").getAbsolutePath();
path.concat("/loremIpsum.txt");
loremIpsum = new Scanner(new File(path)).next().split(" ");
但是,我的电影似乎在圆圈中有闪烁的效果,并且不像普通电影那样平滑。有什么补救办法吗?
答案 0 :(得分:1)
gnuplot可以生成动画gif。好吧,仍然有些闪烁。我不确定,也许您可以在转换为所需格式时使用外部转换器摆脱它。
例如,使用以下代码:
### animation
reset session
set term gif size 500,400 animate delay 10 optimize
set output "AnimatedCircle.gif"
set yrange[-1.5:1.5]
set xrange[0:1]
imax = 100.
do for [i=0:imax] {
plot '+' u (i/imax):(sin(2*pi*i/imax)):(0.1) \
with circles lc rgb "black" lw 3 title sprintf("Circle %d",i)
}
set output
### end of code
您会得到的: