If you are working with QtOctave, there are some tricks very useful.
svgcanvasload(1, 'file.svg');
Number is number of window, you can open several SvgCanvas. 'file.svg' is SVG file to show. You can use svgcanvas_delete_on_load to plot. It deletes file when it finish to draw.
svgcanvassave(1, 800, 600, 'file.png');
svgcanvassave (N, WIDTH, HEIGHT, FILE) Saves plot in window N in FILE. FILE can be a PDF, PNG, JPEG, PS,... file format.
Remember!! Videos has got 24 pictures per second. Then 24 pictures are one second of video.
First, export and rename your pictures to follow a numerical sequence. For example, img1.jpg, img2.jpg, img3.jpg,... Then you may run:
ffmpeg -f image2 -i img%d.jpg video.mpg
Notice that '%d' is replaced by the image number.
'img%03d.jpg' means the sequence 'img001.jpg', 'img002.jpg', etc...