| Author |
Comment/Response |
Sumit
|
07/06/12 01:46am
Hi,
Is there any way to create a animation without the option bar on the top and export it as a video clip.
For example
p = Animate[Plot[Sin[x + t], {x, 0, 2 \[Pi]}], {t, 0, \[Pi]}];
Export["a.avi", p]
will create the the video file, but the option bar (speed, direction and the parameter value indicator) will be on the top.
Alternatively I can generate a large number of plots and export them as
q = Table[Plot[Sin[x + t], {x, 0, 2 \[Pi]}], {t, 0, 2 \[Pi], .05}];
Export["b.avi", q]
This will not contain anything but the plot.
But I prefer to do it via Animation command so that I can have visual of the output (and optimise the orientation in case of 3D plot) before exporting it.
Thanks and regards,
Sumit
URL: , |
|