Problème[lenny]: Installation FFPEG+vhook

Bonjour,

Tout d abord, heureux de rejoindre la communauté! En tant que WebDesigner, j’en suis venu à configurer moi même mon serveur et j’ai choisi d’y installer Debian (lenny) et j’en suis très content!

J’essaye donc d’installer ffmpeg et d’activer l’option vhook afin d’ajouter un watermark dans mes vidéos.
Donc je suis scrupuleusement un tutoriel pour installer les dépendances:

[code]

#----------------------------------------------------------------------------#

Step 1: Install some required system libraries

#----------------------------------------------------------------------------#

apt-get install ruby make nasm zlib1g-dev wget autoconf automake libtool g++ subversion

#----------------------------------------------------------------------------#

Step 2: Download and install FLVTool

FLVTool2 is a manipulation tool for Macromedia Flash Video files

#----------------------------------------------------------------------------#

wget http://rubyforge.org/frs/download.php/17497/flvtool2-1.0.6.tgz
tar -zxf flvtool2-1.0.6.tgz
cd flvtool2-1.0.6
ruby setup.rb
cd …/

#----------------------------------------------------------------------------#

Step 3: Download and install LAME

LAME: LAME Ain’t an MP3 Encoder

#----------------------------------------------------------------------------#

wget http://downloads.sourceforge.net/lame/lame-3.97.tar.gz
tar -zxf lame-3.97.tar.gz
cd lame-3.97
./configure --disable-decoder --enable-nasm && make && make install
cd …/

#----------------------------------------------------------------------------#

Step 4: Download and install FAAD

FAAD: Freeware Advanced Audio Coder and Decoder

#----------------------------------------------------------------------------#

wget http://downloads.sourceforge.net/faac/faad2-2.6.1.tar.gz
tar -zxf faad2-2.6.1.tar.gz
cd faad2
autoreconf -vif && ./configure --with-mp4v2 && make && make install
cd …/

#----------------------------------------------------------------------------#

Step 5: Download and install FAAC

FAAC: Freeware Advanced Audio Coder and Decoder

#----------------------------------------------------------------------------#

wget http://downloads.sourceforge.net/faac/faac-1.26.tar.gz
tar -zxf faac-1.26.tar.gz
cd faac
autoreconf -vif && ./configure && make && make install
cd …/

#----------------------------------------------------------------------------#

Step 6: Download and install YASM

YASM: Yasm, the modular assembler

#----------------------------------------------------------------------------#

wget http://www.tortall.net/projects/yasm/releases/yasm-0.7.1.tar.gz
tar -zxvf yasm-0.7.1.tar.gz
cd yasm-0.7.1
./configure && make && make install
cd …/

#----------------------------------------------------------------------------#

Step 7: Download and install x264

x264: x264 is a free library for encoding H264/AVC video streams

#----------------------------------------------------------------------------#

wget http://downloads.videolan.org/pub/videolan/x264/snapshots/x264-snapshot-20080702-2245.tar.bz2
bunzip2 x264-snapshot-20080702-2245.tar.bz2
tar -xvf x264-snapshot-20080702-2245.tar
cd x264-snapshot-20080702-2245
./configure --enable-pthread --enable-shared --prefix=/usr && make && make install
cd …/[/code]

Puis j’utilise le svn de ffmpeg de cette façon:

svn checkout -r17768 svn://svn.ffmpeg.org/ffmpeg/trunk ffmpeg
cd fmmpeg
./configure --enable-vhook --enable-shared --enable-libdc1394 --enable-gpl --enable-libfaac --enable-libfaad --enable-libfaadbin --enable-libmp3lame --enable-libtheora --enable-libvorbis --enable-libxvid --enable-libx264 --enable-libamr-nb --enable-libamr-wb --enable-nonfree && make && make install

Là, Putty m’indique qu’il y a une erreur avec le svn.
J’ai lu quelque part qu’il fallait installer imlib et imlib2 vous avez des infos là dessus?

Merci à vous!