I installed both ffmpeg-devel and ffmpeg using yum.
ffmpeg I figured installed correctly.

root@hollywood [/home/johndoe]# ffmpeg -version
FFmpeg version 0.5, Copyright (c) 2000-2009 Fabrice Bellard, et al.
configuration: --prefix=/usr --libdir=/usr/lib --shlibdir=/usr/lib --mandir=/usr/share/man --incdir=/usr/include --enable-libamr-nb --enable-libamr-wb --enable-libdirac --enable-libfaac --enable-libfaad --enable-libmp3lame --enable-libtheora --enable-libx264 --enable-gpl --enable-nonfree --enable-postproc --enable-pthreads --enable-shared --enable-swscale --enable-x11grab
libavutil 49.15. 0 / 49.15. 0
libavcodec 52.20. 0 / 52.20. 0
libavformat 52.31. 0 / 52.31. 0
libavdevice 52. 1. 0 / 52. 1. 0
libswscale 0. 7. 1 / 0. 7. 1
libpostproc 51. 2. 0 / 51. 2. 0
built on Jul 24 2009 01:48:17, gcc: 4.1.2 20080704 (Red Hat 4.1.2-44)
FFmpeg 0.5
libavutil 49.15. 0 / 49.15. 0
libavcodec 52.20. 0 / 52.20. 0
libavformat 52.31. 0 / 52.31. 0
libavdevice 52. 1. 0 / 52. 1. 0
libswscale 0. 7. 1 / 0. 7. 1
libpostproc 51. 2. 0 / 51. 2. 0
This seemed suspicious to me because I figured the installation would find the correct directories to install everything.
I got this after ./configure && make
...

Libraries have been installed in:
/root/pubdls/ffmpeg-php-0.6.0/modules

...
I then finished with;

root@hollywood [~/pubdls/ffmpeg-php-0.6.0]# sudo make install
Installing shared extensions: /usr/local/lib/php/extensions/no-debug-non-zts-20060613/
But this is what I get when I;

root@hollywood [~/pubdls/ffmpeg-php-0.6.0]# make test

Build complete.
Don't forget to run 'make test'.


=====================================================================
PHP : /usr/local/bin/php
PHP_SAPI : cli
PHP_VERSION : 5.2.9
ZEND_VERSION: 2.2.0
PHP_OS : Linux - Linux hollywood 2.6.18-128.4.1.el5 #1 SMP Tue Aug 4 20:23:34 EDT 2009 i686
INI actual : /usr/local/lib/php.ini
More .INIs :
CWD : /root/pubdls/ffmpeg-php-0.6.0
Extra dirs :
VALGRIND : Not used
=====================================================================
Running selected tests.

..
..

Number of tests : 29 29
Tests skipped : 0 ( 0.0%) --------
Tests warned : 0 ( 0.0%) ( 0.0%)
Tests failed : 29 (100.0%) (100.0%)
Expected fail : 0 ( 0.0%) ( 0.0%)
Tests passed : 0 ( 0.0%) ( 0.0%)
---------------------------------------------------------------------
Time taken : 12 seconds
How do I make sure its working correctly?