ffmpeg issues

ScathDeSolas

Verified User
Joined
Feb 10, 2011
Messages
52
http://linux.justinhartman.com/FFmp...FLVtool2,_Mplayer,_Mencoder,_AMR_Installation
http://www.ndchost.com/wiki/server-administration/install-ffmpeg
http://www.eukhost.com/forums/f15/h...ayer-mencoder-flv2tool-lame-mp3-encoder-4893/

I followed all three tutorials and each one I have an issue.

Code:
server:/usr/local/src/mplayer# cd /usr/local/src/ffmpeg/
server:/usr/local/src/ffmpeg# ./configure --enable-libmp3lame --enable-libvorbis --disable-mmx --enable-shared --enable-libamr-nb --enable-libamr-wb --enable-nonfree --enable-libtheora
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for a sed that does not truncate output... /bin/sed
checking for cc... cc
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables...
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether cc accepts -g... yes
checking for cc option to accept ISO C89... none needed
checking how to run the C preprocessor... cc -E
checking for icc... no
checking for suncc... no
checking whether cc understands -c and -o together... yes
checking for system library directory... lib
checking if compiler supports -R... no
checking if compiler supports -Wl,-rpath,... yes
checking build system type... i686-pc-linux-gnu
checking host system type... i686-pc-linux-gnu
checking target system type... i686-pc-linux-gnu
checking for PHP prefix... /usr/local
checking for PHP includes... -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib
checking for PHP extension directory... /usr/local/lib/php/extensions/no-debug-non-zts-20060613
checking for PHP installed headers prefix... /usr/local/include/php
checking if debug is enabled... no
checking if zts is enabled... no
checking for re2c... re2c
checking for re2c version... 0.13.5 (ok)
checking for gawk... no
checking for nawk... nawk
checking if nawk is broken... no
checking for ffmpeg support... yes, shared
checking whether to force gd support in ffmpeg-php... no
checking for ffmpeg headers...
configure: error: ffmpeg headers not found. Make sure ffmpeg is compiled as shared libraries using the --enable-shared option

It wants me to fix the codecs so I have them installed, BUT, my issue is when I try:

Code:
server:/usr/local/src/ffmpeg# cp /usr/local/include/libavcodec/* /usr/local/include/ffmpeg
cp: cannot stat `/usr/local/include/libavcodec/*': No such file or directory


That is the fix for the above error for headers. Does this mean I should create this directory EVEN THOUGH it will be empty?
 
Back
Top