From help-octave-request at bevo dot che dot wisc dot edu Mon Jan 20 11:15:16 2003 Subject: Re: Make a video From: "Al Piszcz 'peesh'" To: Pablo Barrera cc: Octave Date: Mon, 20 Jan 2003 12:13:35 -0500 (EST) I dump frames from a gnuplot script as jpg then use ffmpeg You need to get all the frame filenames in a easily readable format. jpg2frame ==== #!/bin/sh #set -x i=1 for j in `ls *jpg` do i=`expr $i + 1` nfname=`printf "%06d.jpg" $i` echo $nfname ln -s $j $nfname done jpg2movie === #!/bin/bash echo $# if [ $# -lt 1 ] then echo "usage: $0 movieFileName" fi # -r rate in HZ # -b bandwidth which controls quality. ffmpeg \ -r 10 \ -b 4000 \ -i '%06d.jpg' \ $1 On Mon, 20 Jan 2003, Pablo Barrera wrote: > Date: Mon, 20 Jan 2003 19:08:38 +0100 > From: Pablo Barrera > To: Octave > Subject: Make a video > > Hello > > I have a simple question. Does anyone know if octave can make movies > (in any format) with a sequence of figures (plot or mesh) like matlab > do? If I can't use octave, is there any other option for doing this? > > A have a set of figures (plots) and I want to show the evolution of this > figures in a video/movie. > > Thank you in advance. > > > Pablo > > > > > ------------------------------------------------------------- > Octave is freely available under the terms of the GNU GPL. > > Octave's home on the web: http://www.octave.org > How to fund new projects: http://www.octave.org/funding.html > Subscription information: http://www.octave.org/archive.html > ------------------------------------------------------------- > ------------------------------------------------------------- Octave is freely available under the terms of the GNU GPL. Octave's home on the web: http://www.octave.org How to fund new projects: http://www.octave.org/funding.html Subscription information: http://www.octave.org/archive.html -------------------------------------------------------------