I made my first video following dave's method and generate my 30fps for 5m05s (got around 10k jpeg).
Since I'm on mac I had to create my movie from jpeg's.
Here is a way I found there:
http://www.carbonsilk.com/development/timelapse-video-mac/
first you'll have to get the soft to make the compression (Here FFMPEG)
So open the terminal (you can use the finder Control+SPACE and type terminal to get it quickly)
then:
mkdir ~/Documents/temp
cd ~/Documents/temp/
svn checkout svn://svn.ffmpeg.org/ffmpeg/trunk ffmpeg
cd ffmpeg
./configure --enable-shared --disable-mmx
sudo make
sudo make install
This will create a folder
temp in your Documents folder
Then
download the soft in a
ffmpeg folder
and
install it (you need to type your root password)
then create a folder for your jpeg (or modify the following):
here we'll create a
jpeg folder in the previous temp folder
mkdir ~/Documents/temp/jpeg/
put your jpeg (a copy may be preferable in case of doubt) in the folder
jpeg (located in your Documents/temp)
mkdir ~/Documents/temp/jpegprocessed/
mkdir ~/Documents/temp/videos/
mkdir ~/Documents/temp/scripts/
cd ~/Documents/temp/scripts/
vi make_complete_sequence.sh
this creates:
-
jpegprocessed folder where jpeg with ffmpeg friendly will be copied.
-
videos folder where your final video will be created.
- a
scripts folder where the script you'll have to launch will be
This also
launch the editor
vi.
In it copy and past the following
COUNTER=0;
for i in `find ~/Documents/temp/jpeg -name '*.jpg'` ;
do
#Write the filename to be friendly with ffmpeg's odd filename input
FILENAME=`printf '%05d.jpg' $COUNTER`
cp $i ~/Documents/temp/jpegprocessed/$FILENAME
let COUNTER=COUNTER+1;
done
nice ffmpeg -i ~/Documents/temp/jpegprocessed/%5d.jpg -r 30 -b 5000k ~/Documents/temp/videos/movie_complete.mp4This will search jpeg in your
jpeg folder and then rename/copy those as 00001.jpeg ... (if you have more than 99999 change the %5d to %6d or more decimals) in the
jpegprocessed folder
Then it will make your movie thanks to this command
nice ffmpeg -i ~/Documents/temp/jpegprocessed/%5d.jpg -r 30 -b 5000k ~/Documents/temp/videos/movie_complete.mp4
-i #input
-r #fps (here 30)
-b #bitrate (5000k for HD video, 2500k for DV, 1800k for 4:3 cf. http://www.vimeo.com/help/compression)
then you'll have to change the permission to be able to run the script
chmod a+x make_complete_sequence.sh
finally you can run it:
./make_complete_sequence.sh
Then you'll have to wait for your video to appear in the
videos folder !
To have the music on it you'll have to use iMovieExport setting depends on the quality you want so I'll let you see for this or if you have any questions...