Help - Search - Members - Calendar
Full Version: HOWTO: FFmpeg + FFmpeg-PHP + Mplayer + Mencoder + flv2tool + LAME MP3 Encoder + Libog
The Planet Forums > System Administration > HOWTOs
Pages: 1, 2
GatorLarry
A few people have asked for this to be done so heres a howto for installing:

FFmpeg
FFmpeg-PHP
Mplayer + Mencoder (mencoder is now built into the mplayer svn release )
flv2tool ****REQUIRES RUBY ON RAILS****
LAME MP3 Encoder
Libogg
Libvorbis
</span>


+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
++


**** UPDATED 10 FEBRUARY 2008 ****


CODE
cd /usr/local/src
#GET CRAP:
wget http://www3.mplayerhq.hu/MPlayer/releases/codecs/essential-20061022.tar.bz2  # ( UPDATED 20070308 )
wget http://rubyforge.org/frs/download.php/9225/flvtool2_1.0.5_rc6.tgz
wget http://easynews.dl.sourceforge.net/sourceforge/lame/lame-3.97.tar.gz
wget http://superb-west.dl.sourceforge.net/sourceforge/ffmpeg-php/ffmpeg-php-0.5.0.tbz2
wget http://downloads.xiph.org/releases/ogg/libogg-1.1.3.tar.gz
wget http://downloads.xiph.org/releases/vorbis/libvorbis-1.1.2.tar.gz
#EXTRACT THE CRAP:
tar zxvf flvtool2_1.0.5_rc6.tgz
tar zxvf lame-3.97.tar.gz
tar zxvf libogg-1.1.3.tar.gz
tar zxvf libvorbis-1.1.2.tar.gz
tar zxvf flvtool2_1.0.5_rc6.tgz
tar jxvf essential-20061022.tar.bz2   # ( UPDATED 20070308 )
tar jxvf ffmpeg-php-0.5.0.tbz2
#WE NEED A DIR MADE:
mkdir /usr/local/lib/codecs/
#JUST IN CASE:
up2date -i gcc gmake make libcpp libgcc libstdc++ gcc4 gcc4-c++ gcc4-gfortran
yum install gcc gmake make libcpp libgcc libstdc++ gcc4 gcc4-c++ gcc4-gfortran
#WE NEED TO INSTALL SVN + ROR:
up2date -i subversion
up2date -i ruby
up2date -i ncurses-devel
svn checkout svn://svn.mplayerhq.hu/ffmpeg/trunk ffmpeg
svn checkout svn://svn.mplayerhq.hu/mplayer/trunk mplayer
cd /usr/local/src/mplayer
svn update
cd /usr/local/src
#COPY CODECS FOR MPLAYER:
mv /usr/local/src/essential-20061022/* /usr/local/lib/codecs/
chmod -R 755 /usr/local/lib/codecs/
#SECURE TMP IS A PAIN AT TIMES Wink
mkdir /usr/local/src/tmp
chmod 777 /usr/local/src/tmp
export TMPDIR=/usr/local/src/tmp
#LAME:
cd /usr/local/src/lame-3.97
./configure
make && make install
cd /usr/local/src/
#LIBOGG:
cd /usr/local/src/libogg-1.1.3
./configure && make && make install
cd /usr/local/src/
#LIBVORBIS:
cd /usr/local/src/libvorbis-1.1.2
./configure && make && make install
cd /usr/local/src/
#FLVTOOL2:
cd /usr/local/src/flvtool2_1.0.5_rc6/
ruby setup.rb config
ruby setup.rb setup
ruby setup.rb install
cd /usr/local/src/
cd /usr/local/src/mplayer
./configure && make && make install
cd /usr/local/src/
#FFMPEG:
cd /usr/local/src/ffmpeg/
#./configure --enable-libmp3lame --enable-libogg --enable-libvorbis --disable-mmx --enable-shared
### configure options changed ###
./configure --enable-libmp3lame  --disable-mmx --enable-shared
######### IGNORE THIS ECHO LINE  The dev's fixed the issue in svn. Im only leaveing it here in case it comes up again ###############
#####echo '#define HAVE_LRINTF 1 '>>config.h
################################################################################
#############################
make
make install
ln -s /usr/local/lib/libavformat.so.50 /usr/lib/libavformat.so.50
ln -s /usr/local/lib/libavcodec.so.51 /usr/lib/libavcodec.so.51
ln -s /usr/local/lib/libavutil.so.49 /usr/lib/libavutil.so.49
ln -s /usr/local/lib/libmp3lame.so.0 /usr/lib/libmp3lame.so.0
ln -s /usr/local/lib/libavformat.so.51 /usr/lib/libavformat.so.51
ln -s /usr/local/lib/libavformat.so.52 /usr/lib/libavformat.so.52  
ln -s /usr/local/lib/libavdevice.so.52 /usr/lib/libavdevice.so.52  
cd /usr/local/src/
#FFMPEG-PHP:
cd /usr/local/src/ffmpeg-php-0.5.0/
yum -y install autoconf
up2date -i autoconf
phpize
./configure
make
make install

#NOTICE: Make sure this is the correct php.ini for the box!!

echo 'extension=/usr/local/lib/php/extensions/no-debug-non-zts-20020429/ffmpeg.so' >> /usr/local/Zend/etc/php.ini

#NOTICE: Make sure this is the correct php.ini for the box!!

service httpd restart
cd /usr/local/src
Billshere
Thanks for posting this, I did it all, seemed to install, however the Clip Share script I installed can't seem to use it. I didn't install the ffmpeg-php, as they told me it wasn't necessary, even though their web site asks for it. I was going to try to install it anyway, but I don't have phpize, and there doesn't seem to be a php-devel for PHP 4.4.2.

Is there something I'm missing? Do I need to add something to the site's php.ini to allow access to these modules?
GatorLarry
QUOTE (Billshere)
Thanks for posting this, I did it all, seemed to install, however the Clip Share script I installed can't seem to use it. I didn't install the ffmpeg-php, as they told me it wasn't necessary, even though their web site asks for it. I was going to try to install it anyway, but I don't have phpize, and there doesn't seem to be a php-devel for PHP 4.4.2.

Is there something I'm missing? Do I need to add something to the site's php.ini to allow access to these modules?


Have you tried doing a source compile of php? That should have it.

Also, you should use php 4.4.4 and not 4.4.2 as it has a few bug fixes in it and security fixes.
luke
is anyone able to actually get ffmpeg recently? I have been trying for days and it keeps giving me this error message:

> svn checkout svn://svn.mplayerhq.hu/ffmpeg/trunk ffmpeg
svn: Can't connect to host 'svn.mplayerhq.hu': Connection timed out

Does anyone have another svn location for ffmpeg?
alexandrecorrea
open egress svn port:


iptables -t filter -I OUTPUT -p tcp --dport 3090 -j ACCEPT


regards !

Alexandre J. Correa
OPinguim.net
www.opinguim.net
alexandrecorrea
I followed all the steps, no errors !!

but module isn´t loading !!!

i places de line correctly on php.ini !! restarted apache...


but extension not loading..

i´m running php 5.1.4


tks !
The DareDevil
Thanks Larry!
iBuddy
I am stuck at

svn checkout svn://svn.mplayerhq.hu/ffmpeg/trunk ffmpeg

svn checkout svn://svn.mplayerhq.hu/mplayer/trunk mplayer


This is what it says

root@server [/usr/local/src]# svn checkout svn://svn.mplayerhq.hu/ffmpeg/trunk ffmpeg
-bash: svn: command not found
root@server [/usr/local/src]# svn checkout svn://svn.mplayerhq.hu/mplayer/trunk mplayer
-bash: svn: command not found
devGOD
has anyone successfully installed this?
iBuddy
I had a terrible time installing it.....but the good news is I found someone that installs it perfectly.....he installed it on about 4 of my servers and I def recommend him. PM ME if you want me to set it up for you with him.
devGOD
everything went well with the install above i also did the 3gp install found here
http://dev.gemin-i.org/wiki/index.php/Ffmp...ll_instructions

for the install above by TSS-grunt, the first link for essential is no longer available the new version is...
http://www3.mplayerhq.hu/MPlayer/releases/...0061022.tar.bz2
Augusto
I'm having a problem when I get to the FFmpeg part.

I when I run make I get these undefined references from gcc:

CODE
gcc -L"/usr/local/src/ffmpeg"/libavformat -L"/usr/local/src/ffmpeg"/libavcodec -L"/usr/local/src/ffmpeg"/libavutil -Wl,--warn-common  -rdynamic -export-dynamic -Wl,--as-needed -Wl,-rpath-link,"/usr/local/src/ffmpeg"/libavcodec -Wl,-rpath-link,"/usr/local/src/ffmpeg"/libavformat -Wl,-rpath-link,"/usr/local/src/ffmpeg"/libavutil -g -o ffmpeg_g ffmpeg.o cmdutils.o -lavformat -lavcodec -lavutil -lm -lz -lmp3lame -lm -lvorbis -lvorbisenc -logg -logg -ldl
/usr/local/src/ffmpeg/libavcodec/libavcodec.so: undefined reference to `mm_flags'
/usr/local/src/ffmpeg/libavcodec/libavcodec.so: undefined reference to `ff_fft_calc_3dn'
/usr/local/src/ffmpeg/libavcodec/libavcodec.so: undefined reference to `ff_fft_calc_3dn2'
/usr/local/src/ffmpeg/libavcodec/libavcodec.so: undefined reference to `ff_imdct_calc_3dn2'
/usr/local/src/ffmpeg/libavcodec/libavcodec.so: undefined reference to `ff_fft_calc_sse'
/usr/local/src/ffmpeg/libavcodec/libavcodec.so: undefined reference to `MPV_common_init_mmx'
/usr/local/src/ffmpeg/libavcodec/libavcodec.so: undefined reference to `ff_imdct_calc_sse'
/usr/local/src/ffmpeg/libavcodec/libavcodec.so: undefined reference to `mm_support'
/usr/local/src/ffmpeg/libavcodec/libavcodec.so: undefined reference to `dsputil_init_mmx'
collect2: ld returned 1 exit status
make: *** [ffmpeg_g] Error 1


Anyone had this problem?
I'm runing RH and cPanel
GatorLarry
On Augusto's error... it appears that the dev's fixed the bug i was working around with the .h .... ill update main post

iBuddy: You need to install subversion up2date -i subversion or yum install subversion

alexandrecorrea: I havent tested it with php5 so not sure but make sure that you are useing the correct php.ini and that you dont have php4 and php5 installed as that might be causeing an issue icon_wink.gif

devGOD: updated original post with the new url for the archive. Thanks icon_smile.gif
Augusto
That did it for me.
Thanks a whole lot Larry icon_smile.gif
I really appreciate your help.

As usual the guys from totalserversolutions got all the answers
You guys rock icon_biggrin.gif

Augusto.
bakraa
Thanks alot for the information, i followed all the steps and everything went on smoothly. i managed to install all of the above.

But even after installing i am having a problem. the problem is that FFMPEG is not converting video files into flv format ... wacko.gif

i am using one of the youtube clone scripts, when i upload a video it uploads the video into the video folder but it does not make the FLV inside the flvideo folder. What is wrong here?

Please can anyone Help ? sad.gif
Augusto
ffmpeg installs a small set of videos to help test the installation. They are located inside the ffmpeg-php-x.x.x directory.
If you want to test the installation and check if it encodes into Flash Video you can do this:

Go to that directory:

CODE
cd /usr/local/src/ffmpeg-php-0.5.0/tests/test_media/

# (change 0.5.0 to your actual installation directory)

Try to do a conversion manually by command line:

CODE
ffmpeg -i robot.avi -s 320x240 -ar 44100 -r 12 robot.flv


It should give you two last lines similar to this as a result:

frame= 118 q=8.6 Lsize= 426kB time=9.8 bitrate= 357.5kbits/s
video:342kB audio:76kB global headers:0kB muxing overhead 1.900628%


Download robot.flv to your computer and play it to check if it actually worked.

If it does then it means it's working but possibly the parameters your script is sending it need to be adjusted.
bakraa
yes augusto you are right, i am sorry i didn't mention it in my previous post but i did test ffmpeg on my dedicated machine throught SSH and entered the command to convert an AVI file and it did convert to .FLV

ffmpeg -i 1.avi -s 320x240 -ar 44100 -r 12 1.flv

then i manually pasted the 1.flv inside the flvideo of the script and then went back to the page and tried to play it using the player available and it was playing fine.

This is the parameter that the upload.php sends out

////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

if(isset($_FILES['field_uploadfile']['tmp_name']) && is_uploaded_file($_FILES['field_uploadfile']['tmp_name']))
{
$ff = $config[vdodir]."/".$vdoname;
if(move_uploaded_file($_FILES['field_uploadfile']['tmp_name'], $ff))
{ $mov = new ffmpeg_movie($ff);
video_to_frame($ff,$vid,&$mov,$listch[0]);
$duration=$mov->getDuration();
exec("$config[ffmpeg] -i $config[vdodir]/$vdoname -acodec mp3 -ar 22050 -ab 32 -f flv $config[flvdodir]/".$vid.".flv");
}
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

Just now changed

exec("$config[ffmpeg] -i $config[vdodir]/$vdoname -acodec mp3 -ar 22050 -ab 32 -f flv $config[flvdodir]/".$vid.".flv");

Into

echo("$config[ffmpeg] -i $config[vdodir]/$vdoname -acodec mp3 -ar 22050 -ab 32 -f flv $config[flvdodir]/".$vid.".flv");

result
still no effect... videos are not converting into flv
Difushion
Hi everyone!
How would I install the same packages in a shared server (Dreamhost)?
Thanks in advance
guyinblacktshirt
augusto , bakraa , having the exact same problems, please advise if u have any updated info
Augusto
Yeah I had the same issue. It seemed it was working but under certain commands it fails so I'm working on a different way to do it.
nilaja1994
Hello All,
I am new to this forum and really need help installing the following lbraries :
GD Library 2 or higher
FFmpeg (http://ffmpeg.mplayerhq.hu)
FFmpeg-PHP (http://ffmpeg-php.sourceforge.net)
Mplayer + Mencoder (http://www.mplayerhq.hu/design7/dload.html)
flv2tool (http://inlet-media.de/flvtool2)
Libogg + Libvorbis (http://www.xiph.org/downloads)
LAME MP3 Encoder (http://lame.sourceforge.net)

This install above seem to look simply but i was not able to even start. I am getting permission error when i use the wget http. putty is telling me that essential-20061022.tar.bz2: permission denied.
Any help will be great. Also, i can pay to have this issued.
Thanks in advance
guyinblacktshirt
nilaja i suppose your trying to setup clip-share? these are the modules it needs from its website http://www.clip-share.com/video-sharing-sc...quirements.html

- those guys have a server setup option for $50 so if you are willing to pay this would be the fastest route. i'm trying to get it running for one and a half months by myself

will keep you updated if I find a solution . so far the most comprehensive how-to is the one found in this thread
guyinblacktshirt
finally i found out where the problem was:

the command that my upload.php sent out was

mencoder 11.wmv -o ../flvideo/11.flv -of lavf -oac mp3lame -lameopts abr:br=56 -ovc lavc -lavcopts vcodec=flv:vbitrate=9600:mbd=2:mv0:trell:v4mv:cbp:last_pred=3 -lavfopts i_certify_that_my_video_stream_does_not_use_b_frames -srate 22050

when i run it through ssh it returned an error about -mp3lame support not enabled when configuring MPlayer. however mp3lame was installed on my system

after some googling i found out that I had to install lame-dev as well, so that mplayer configure script could find the header files. I installed the dev version of lame through rpm and i run the configure script again on Mplayer sources. after installation, the command run fine, so did the script

it would be good if mencoder just used -nosound when it wouldn't find the appropriate audio codec, thats the command I used to test if video alone would encode:

mencoder 10.wmv -of lavf -nosound -ovc lavc -lavcopts vcodec=flv:vbitrate=9600:mbd=2:mv0:trell:v4mv:cbp:last_pred=3 -lavfopts i_certify_that_my_video_stream_does_not_use_b_frames -srate 22050 -o 10.flv
bakraa
i found this information to be helpful

http://zappa.tvu.ac.uk/~02menzingerd/netart/?p=158

you guys also try it out and plz do post if u can make the youtube clone script work
wojo00
Hello,

I'm having a problem during the install of lame-3.97 on CentOs, I get the following error:

CODE
make[2]: Entering directory `/usr/local/src/lame-3.97/frontend'
if gcc -DHAVE_CONFIG_H  -I. -I. -I.. -I../libmp3lame -I../include -I..    -O3  -ffast-math                      -funroll-loops                          -maccumulate-outgoing-args -Wall -pipe    -MT brhist.o -MD -MP -MF ".deps/brhist.Tpo" -c -o brhist.o brhist.c; \
then mv -f ".deps/brhist.Tpo" ".deps/brhist.Po"; else rm -f ".deps/brhist.Tpo"; exit 1; fi
brhist.c:63:21: curses.h: No such file or directory
brhist.c:65:20: term.h: No such file or directory
brhist.c: In function `brhist_init':
brhist.c:180: warning: implicit declaration of function `tgetent'
brhist.c:187: warning: implicit declaration of function `tgetnum'
brhist.c:195: warning: implicit declaration of function `tgetstr'
brhist.c:195: warning: assignment makes pointer from integer without a cast
brhist.c:200: warning: assignment makes pointer from integer without a cast
brhist.c:205: warning: assignment makes pointer from integer without a cast
brhist.c:210: warning: assignment makes pointer from integer without a cast
make[2]: *** [brhist.o] Error 1
make[2]: Leaving directory `/usr/local/src/lame-3.97/frontend'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/usr/local/src/lame-3.97'
make: *** [all] Error 2


I've downloaded lame again but got the same error. Seems some files are missing?

Are there people who had the same problem or know how I should go on now? Any help would be much appreciated!
wojo00
I finally have the solution and thought it would be nice to post it here for the ones having the same problem..


--------------------------------------------------------------------------------
brhist.c:63:21: curses.h: No such file or directory
brhist.c:65:20: term.h: No such file or directory

--------------------------------------------------------------------------------

if you have not sorted this yet....
To fix this you need to install ncurses-devel

use the command:

yum install ncurses-devel

Thnx to Jkey
GatorLarry
QUOTE (wojo00 @ Feb 10 2007, 02:51 PM) *
I finally have the solution and thought it would be nice to post it here for the ones having the same problem..
--------------------------------------------------------------------------------
brhist.c:63:21: curses.h: No such file or directory
brhist.c:65:20: term.h: No such file or directory

--------------------------------------------------------------------------------

if you have not sorted this yet....
To fix this you need to install ncurses-devel

use the command:

yum install ncurses-devel

Thnx to Jkey



Added to original post tongue.gif
ptitcastor
Hello,

When I do this instruction : mv /usr/local/src/essential-20060611/* /usr/local/lib/codecs/
The SSH say : mv: cannot stat `/usr/local/src/essential-20060611/*': No such file or directory


What is the problem?
cmafia
I had EZSM.com do the installs and Clip Share to installing the software. I'm a lazy bastid but that's ok! By the way, CHECKOUT VIDEOSLACKER.COM !!
Steve Carrier
I get this error when I tried installing it... can anyone help? if you can please reply back to this or email me @ carrierlp@hotmail.com

I can be reached on MSN and AOL, Screenname; CARRIERLP

thanks..............

checking for pkg-config... /usr/bin/pkg-config
checking for ogg >= 1.0... Package ogg was not found in the pkg-config search path.
Perhaps you should add the directory containing `ogg.pc'
to the PKG_CONFIG_PATH environment variable
No package 'ogg' found
checking for Ogg... no
*** Could not run Ogg test program, checking why...
*** The test program compiled, but did not run. This usually means
*** that the run-time linker is not finding Ogg or finding the wrong
*** version of Ogg. If it is not finding Ogg, you'll need to set your
*** LD_LIBRARY_PATH environment variable, or edit /etc/ld.so.conf to point
*** to the installed location Also, make sure you have run ldconfig if that
*** is required on your system
***
*** If you have an old version installed, it is best to remove it, although
*** you may also be able to get things to work by modifying LD_LIBRARY_PATH
configure: error: must have Ogg installed!
ptitcastor
I have bug

[root@plesk mplayer]# ./configure && make && make install
Detected operating system: Linux
Detected host architecture: i386
Checking for cc version ... 3.4.6, ok
Checking for host cc ... cc
Checking for cross compilation ... no
Checking for CPU vendor ... GenuineIntel (15:2:7)
Checking for CPU type ... Intel® Pentium® 4 CPU 2.40GHz
Checking for kernel support of mmx ... yes
Checking for kernel support of mmxext ... yes
Checking for kernel support of sse ... yes
Checking for kernel support of sse2 ... yes
Checking for kernel support of cmov ... yes
Checking for mtrr support ... yes
Checking for GCC & CPU optimization abilities ... pentium4
Checking for assembler support of -pipe option ... yes
Checking for compiler support of named assembler arguments ... yes
Checking for assembler (as 2.15.92.0.2) ... ok
Checking for .align is a power of two ... no
Checking for Linux kernel version ... 2.6.9-5.ELsmp, ok
Checking for awk ... gawk
Checking for extra headers ... none
Checking for extra libs ... none
Checking for -lposix ... no
Checking for -lm ... yes
Checking for langinfo ... yes
Checking for language ... using en (man pages: en )
Checking for enable sighandler ... yes
Checking for runtime cpudetection ... no
Checking for restrict keyword ... __restrict
Checking for __builtin_expect ... yes
Checking for kstat ... no
Checking for posix4 ... no
Checking for lrintf ... yes
Checking for round ... yes
Checking for nanosleep ... yes
Checking for socklib ... yes
Checking for inet_pton() ... yes (using )
Checking for network ... yes
Checking for inttypes.h (required) ... yes
Checking for int_fastXY_t in inttypes.h ... yes
Checking for word size ... 32
Checking for stddef.h ... yes
Checking for malloc.h ... yes
Checking for memalign() ... yes
Checking for alloca.h ... yes
Checking for mman.h ... yes
Checking for dynamic loader ... yes
Checking for dynamic a/v plugins support ... no
Checking for pthread ... yes (using -lpthread)
Checking for rpath ... no
Checking for iconv ... yes
Checking for sys/soundcard.h ... yes
Checking for sys/dvdio.h ... no
Checking for sys/cdio.h ... no
Checking for linux/cdrom.h ... yes
Checking for dvd.h ... no
Checking for termcap ... yes (using -lncurses)
Checking for termios ... yes (using sys/termios.h)
Checking for shm ... yes
Checking for linux devfs ... no
Checking for scandir() ... yes
Checking for strsep() ... yes
Checking for strlcpy() ... no
Checking for strlcat() ... no
Checking for fseeko() ... yes
Checking for localtime_r() ... yes
Checking for vsscanf() ... yes
Checking for swab() ... yes
Checking for POSIX select() ... yes
Checking for gettimeofday() ... yes
Checking for glob() ... yes
Checking for setenv() ... yes
Checking for sys/sysinfo.h ... yes
Checking for pkg-config ... yes
Checking for Samba support (libsmbclient) ... yes
Checking for 3dfx ... no
Checking for tdfxfb ... no
Checking for s3fb ... no
Checking for tdfxvid ... no
Checking for tga ... yes
Checking for DirectFB ... no
Checking for X11 headers presence ... no (check if the dev(el) packages are installed)
Checking for X11 ... no (check if the dev(el) packages are installed)
Checking for DPMS ... no
Checking for Xv ... no
Checking for XvMC ... no
Checking for Xinerama ... no
Checking for Xxf86vm ... no
Checking for XF86keysym ... no
Checking for DGA ... no
Checking for OpenGL ... no
Checking for /dev/mga_vid ... no
Checking for xmga ... no
Checking for GGI ... no
Checking for GGI extension: libggiwmh ... no
Checking for AA ... no
Checking for CACA ... no
Checking for SVGAlib ... no
Checking for FBDev ... no
Checking for DVB ... no
Checking for DVB HEAD ... yes
Checking for PNG support ... no
Checking for JPEG support ... no
Checking for PNM support ... yes
Checking for GIF support ... no
Checking for VESA support ... no
Checking for SDL ... no
Checking for NAS ... no
Checking for DXR2 ... no
Checking for DXR3/H+ ... no
Checking for IVTV TV-Out ... no
Checking for OSS Audio ... yes
Checking for aRts ... no
Checking for EsounD ... no
Checking for Polyp ... no
Checking for JACK ... no
Checking for OpenAL ... no
Checking for ALSA audio ... no
Checking for Sun audio ... no
Checking for VCD support ... yes
Checking for DVD support (libdvdnav) ... no
Checking for dvdread ... yes (internal)
Checking for internal libdvdcss ... yes
Checking for cdparanoia ... no
Checking for libcdio ... no
Checking for bitmap font support ... yes
Checking for freetype >= 2.0.9 ... no
Checking for fontconfig ... no (freetype support needed)
Checking for SSA/ASS support ... no (FreeType support needed)
Checking for fribidi with charsets ... no
Checking for ENCA ... no
Checking for zlib ... yes
Checking for RTC ... yes
Checking for liblzo2 support ... no
Checking for mad support ... no
Checking for Twolame ... no
Checking for Toolame ... no
Checking for OggVorbis support ... yes (internal Tremor)
Checking for libspeex (version >= 1.1 required) ... no
Checking for OggTheora support ... no
Checking for mp3lib support ... yes
Checking for liba52 support ... yes
Checking for libdts support ... no
Checking for libmpeg2 support ... yes
Checking for libmpcdec (musepack, version >= 1.2.1 required) ... no
Checking for FAAC (AAC encoder) support ... no (in libavcodec: )
Checking for FAAD2 (AAC) support ... yes (internal floating-point)
Checking for LADSPA plugin support ... no
Checking for Win32 codecs ... yes (using /usr/local/lib/codecs)
Checking for XAnim codecs ... yes (using /usr/local/lib/codecs)
Checking for RealPlayer codecs ... yes (using /usr/local/lib/codecs)
Checking for LIVE555 Streaming Media libraries ... no
Checking for FFmpeg libavutil (static) ... yes
Checking for FFmpeg libavcodec (static) ... yes
Checking for FFmpeg libavformat (static) ... yes
Checking for FFmpeg libpostproc (static) ... yes
Checking for md5sum support ... yes
Checking for AMR narrowband ... no
Checking for AMR narrowband, fixed point ... no
Checking for AMR wideband ... no
Checking for libdv-0.9.5+ ... no
Checking for zr ... no
Checking for bl ... no
Checking for XviD ... no
Checking for x264 ... no (in libavcodec: no)
Checking for nut ... no
Checking for libmp3lame (for mencoder) ... yes
Checking for mencoder ... yes
Checking for fastmemcpy ... yes
Checking for UniquE RAR File Library ... yes
Checking for TV interface ... yes
Checking for Video 4 Linux TV interface ... no
Checking for Video 4 Linux 2 TV interface ... no
Checking for Radio interface ... no
Checking for Capture for Radio interface ... no
Checking for Video 4 Linux 2 Radio interface ... no
Checking for Video 4 Linux Radio interface ... no
Checking for Video 4 Linux 2 MPEG PVR interface ... no
Checking for audio select() ... yes
Checking for ftp ... yes
Checking for vstream client ... no
Checking for byte order ... failed to autodetect byte order, defaulting to little-endian
Checking for OSD menu ... no
Checking for QuickTime codecs ... yes
Checking for Subtitles sorting ... yes
Checking for XMMS inputplugin support ... no
Checking for inet6 ... no
Checking for gethostbyname2 ... no
Checking for GUI ... no
Checking for automatic gdb attach ... no
Checking for compiler support for noexecstack ... no
Checking for ftello() ... no
Checking for VIDIX (internal) ... yes
Checking for VIDIX (external) ... no
Checking for joystick ... no
Checking for lirc ... no
Checking for lircc ... no
Checking for color console output ... no
Creating config.mak
Creating config.h

Config files successfully generated by ./configure !

Install prefix: /usr/local
Data directory: /usr/local/share/mplayer
Config direct.: /usr/local/etc/mplayer

Byte order: little-endian
Optimizing for: pentium4

Languages:
Messages/GUI: en
Manual pages: en

Enabled optional drivers:
Input: ftp tv libdvdcss dvdread vcd dvb smb network
Codecs: qtx libavcodec real xanim win32 faad2 libmpeg2 liba52 mp3lib tremor(internal)
Audio output: oss mpegpes(dvb)
Video output: cvidix md5sum pnm mpegpes(dvb) tga
Audio filters:
Disabled optional drivers:
Input: vstream pvr radio tv-v4l2 tv-v4l1 live555 cddb cdda dvdnav
Codecs: x264 xvid libdv amr_wb amr_nb faac musepack libdts libtheora speex toolame twolame libmad liblzo gif
Audio output: sun alsa openal jack polyp esd arts ivtv dxr2 nas sdl
Video output: xvidix winvidix bl zr zr2 ivtv dxr3 dxr2 sdl vesa gif89a jpeg png fbdev svga caca aa ggi xmga mga opengl dga xvmc xv x11 dfbmga directfb tdfx_vid s3fb tdfxfb 3dfx
Audio filters: ladspa

'config.h' and 'config.mak' contain your configuration options.
Note: If you alter theses files (for instance CFLAGS) MPlayer may no longer
compile *** DO NOT REPORT BUGS if you tweak these files ***

'make' will now compile MPlayer and 'make install' will install it.
Note: On non-Linux systems you might need to use 'gmake' instead of 'make'.

Please check mtrr settings at /proc/mtrr (see DOCS/HTML/en/video.html#mtrr)

Check configure.log if you wonder why an autodetection failed (make sure
development headers/packages are installed).

NOTE: The --enable-* parameters unconditionally force options on, completely
skipping autodetection. This behavior is unlike what you may be used to from
autoconf-based configure scripts that can decide to override you. This greater
level of control comes at a price. You may have to provide the correct compiler
and linker flags yourself.
If you used one of these options (except --enable-gui and similar ones that
turn on internal features) and experience a compilation or linking failure,
make sure you have passed the necessary compiler/linker flags to configure.

If you suspect a bug, please read DOCS/HTML/en/bugreports.html.

./version.sh `cc -dumpversion`
cc -I. -O4 -march=pentium4 -mtune=pentium4 -pipe -ffast-math -fomit-frame-pointer -D_REENTRANT -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE -I./libavutil -I./libavcodec -c -o mplayer.o mplayer.c
cc -I. -O4 -march=pentium4 -mtune=pentium4 -pipe -ffast-math -fomit-frame-pointer -D_REENTRANT -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE -I./libavutil -I./libavcodec -c -o vobsub.o vobsub.c
make -C libvo libvo.a
make[1]: Entering directory `/usr/local/src/mplayer/libvo'
make[1]: `libvo.a' is up to date.
make[1]: Leaving directory `/usr/local/src/mplayer/libvo'
make -C libao2
make[1]: Entering directory `/usr/local/src/mplayer/libao2'
make[1]: Nothing to be done for `libs'.
make[1]: Leaving directory `/usr/local/src/mplayer/libao2'
make -C input
make[1]: Entering directory `/usr/local/src/mplayer/input'
make[1]: Nothing to be done for `libs'.
make[1]: Leaving directory `/usr/local/src/mplayer/input'
make -C libdha
make[1]: Entering directory `/usr/local/src/mplayer/libdha'
make[1]: Nothing to be done for `all'.
make[1]: Leaving directory `/usr/local/src/mplayer/libdha'
make -C vidix
make[1]: Entering directory `/usr/local/src/mplayer/vidix'
make -C drivers
make[2]: Entering directory `/usr/local/src/mplayer/vidix/drivers'
make[2]: Nothing to be done for `libs'.
make[2]: Leaving directory `/usr/local/src/mplayer/vidix/drivers'
make[1]: Leaving directory `/usr/local/src/mplayer/vidix'
make -C libmpcodecs
make[1]: Entering directory `/usr/local/src/mplayer/libmpcodecs'
make[1]: Nothing to be done for `libs'.
make[1]: Leaving directory `/usr/local/src/mplayer/libmpcodecs'
make -C libaf
make[1]: Entering directory `/usr/local/src/mplayer/libaf'
make[1]: Nothing to be done for `libs'.
make[1]: Leaving directory `/usr/local/src/mplayer/libaf'
make -C libmpdemux libmpdemux.a
make[1]: Entering directory `/usr/local/src/mplayer/libmpdemux'
make[1]: `libmpdemux.a' is up to date.
make[1]: Leaving directory `/usr/local/src/mplayer/libmpdemux'
make -C stream
make[1]: Entering directory `/usr/local/src/mplayer/stream'
make[1]: Nothing to be done for `libs'.
make[1]: Leaving directory `/usr/local/src/mplayer/stream'
make -C libswscale LIBPREF=lib LIBSUF=.a
make[1]: Entering directory `/usr/local/src/mplayer/libswscale'
make[1]: Nothing to be done for `all'.
make[1]: Leaving directory `/usr/local/src/mplayer/libswscale'
make -C libvo libosd.a
make[1]: Entering directory `/usr/local/src/mplayer/libvo'
make[1]: `libosd.a' is up to date.
make[1]: Leaving directory `/usr/local/src/mplayer/libvo'
make -C libavformat LIBPREF=lib LIBSUF=.a
make[1]: Entering directory `/usr/local/src/mplayer/libavformat'
make[1]: Nothing to be done for `all'.
make[1]: Leaving directory `/usr/local/src/mplayer/libavformat'
make -C libavcodec LIBPREF=lib LIBSUF=.a
make[1]: Entering directory `/usr/local/src/mplayer/libavcodec'
make[1]: Nothing to be done for `all'.
make[1]: Leaving directory `/usr/local/src/mplayer/libavcodec'
make -C libavutil LIBPREF=lib LIBSUF=.a
make[1]: Entering directory `/usr/local/src/mplayer/libavutil'
make[1]: Nothing to be done for `all'.
make[1]: Leaving directory `/usr/local/src/mplayer/libavutil'
make -C libpostproc LIBPREF=lib LIBSUF=.a
make[1]: Entering directory `/usr/local/src/mplayer/libpostproc'
make[1]: Nothing to be done for `all'.
make[1]: Leaving directory `/usr/local/src/mplayer/libpostproc'
make -C loader
make[1]: Entering directory `/usr/local/src/mplayer/loader'
make[1]: Nothing to be done for `libs'.
make[1]: Leaving directory `/usr/local/src/mplayer/loader'
make -C mp3lib
make[1]: Entering directory `/usr/local/src/mplayer/mp3lib'
make[1]: Nothing to be done for `libs'.
make[1]: Leaving directory `/usr/local/src/mplayer/mp3lib'
make -C liba52
make[1]: Entering directory `/usr/local/src/mplayer/liba52'
make[1]: Nothing to be done for `libs'.
make[1]: Leaving directory `/usr/local/src/mplayer/liba52'
make -C libmpeg2
make[1]: Entering directory `/usr/local/src/mplayer/libmpeg2'
make[1]: Nothing to be done for `libs'.
make[1]: Leaving directory `/usr/local/src/mplayer/libmpeg2'
make -C libfaad2
make[1]: Entering directory `/usr/local/src/mplayer/libfaad2'
make[1]: Nothing to be done for `libs'.
make[1]: Leaving directory `/usr/local/src/mplayer/libfaad2'
make -C tremor
make[1]: Entering directory `/usr/local/src/mplayer/tremor'
make[1]: Nothing to be done for `libs'.
make[1]: Leaving directory `/usr/local/src/mplayer/tremor'
make -C dvdread
make[1]: Entering directory `/usr/local/src/mplayer/dvdread'
make[1]: Nothing to be done for `libs'.
make[1]: Leaving directory `/usr/local/src/mplayer/dvdread'
make -C libdvdcss
make[1]: Entering directory `/usr/local/src/mplayer/libdvdcss'
make[1]: Nothing to be done for `libs'.
make[1]: Leaving directory `/usr/local/src/mplayer/libdvdcss'
make -C osdep
make[1]: Entering directory `/usr/local/src/mplayer/osdep'
cc -I. -I.. -I../libavutil -I../libavcodec -I../libavformat -O4 -march=pentium4 -mtune=pentium4 -pipe -ffast-math -fomit-frame-pointer -D_REENTRANT -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE -c -o ftello.o ftello.c
ftello.c: In function `ftello':
ftello.c:18: error: incompatible types in return
make[1]: *** [ftello.o] Error 1
make[1]: Leaving directory `/usr/local/src/mplayer/osdep'
make: *** [osdep/libosdep.a] Error 2


What is the problem?
Darisi
Hello,i have a problem that was allready mentioned here, it's this one:

QUOTE
checking for ogg >= 1.0... Package ogg was not found in the pkg-config search path.
Perhaps you should add the directory containing `ogg.pc'
to the PKG_CONFIG_PATH environment variable
No package 'ogg' found
checking for Ogg... no
*** Could not run Ogg test program, checking why...
*** The test program compiled, but did not run. This usually means
*** that the run-time linker is not finding Ogg or finding the wrong
*** version of Ogg. If it is not finding Ogg, you'll need to set your
*** LD_LIBRARY_PATH environment variable, or edit /etc/ld.so.conf to point
*** to the installed location Also, make sure you have run ldconfig if that
*** is required on your system
***
*** If you have an old version installed, it is best to remove it, although
*** you may also be able to get things to work by modifying LD_LIBRARY_PATH
configure: error: must have Ogg installed!
Also ia have problems with these things:

QUOTE
WE NEED TO INSTALL SVN + ROR:

up2date -i subversion

up2date -i ruby

up2date -i ncurses-devel


i get command not found. Any tips on this would be great,

Thanks
GrandmasterB
I've followed this install word for word, yet I can't tell if it worked or not.

I used the following command after restarting httpd: php -r ‘phpinfo();’ | grep ffmpeg

All I get is the following response:
-----------
root@server01 [~/ffmpeg/ffmpeg-php-0.5.0]# php -r ‘phpinfo();’ | grep ffmpeg
OLDPWD => /root/ffmpeg
PWD => /root/ffmpeg/ffmpeg-php-0.5.0
_SERVER[”OLDPWD”] => /root/ffmpeg
_SERVER[”PWD”] => /root/ffmpeg/ffmpeg-php-0.5.0
_ENV[”OLDPWD”] => /root/ffmpeg
_ENV[”PWD”] => /root/ffmpeg/ffmpeg-php-0.5.0

I have verified that I am placing the extension into the correct directory for php.ini as well. any thoughts?
civ
Is lame-3.97 mentioned in the guide specific to any hardware or OS? It installed fine, but mencoder generates 0-byte .FLV files unless I specify -nosound. I tried to install the RPM for lame-devel (RHEL3 i386) as guyinblacktshirt suggested above, but rpm said a dependency was needed for "lame-3.97", which is odd because I already installed it via this guide. mellow.gif I tried the rpm for lame-3.97 for RHEL3 i386, which seemed to install fine on top of (?) lame-3.97 from this guide. However, when running the following code a 0-byte .FLV file is generated:

CODE
mencoder file.mpg -o vid.flv -of lavf -oac mp3lame -lameopts abr:br=56 -ovc lavc -lavcopts vcodec=flv:vbitrate=9600:mbd=2:mv0:trell:v4mv:cbp:last_pred=3 -lavfopts i_certify_that_my_video_stream_does_not_use_b_frames -srate 22050

If I use -nosound then an FLV file is generated!

What might be the problem? Is LAME borked or could it be something else?

TIA!

Edit: Interestingly, the following works - maybe mencoder is the problem, not lame?
CODE
ffmpeg -i /home/username/www/titleofvideo.wmv -ab 56 -ar 22050 -b 500 -r 15 -s 320×240 /home/username/www/test.flv
dcaceres
This instructions work on shared host like Dreamhost?
bobpang425
CODE
make[1]: Entering directory `/usr/local/src/mplayer/libvo'
make[1]: `libvo.a' is up to date.
make[1]: Leaving directory `/usr/local/src/mplayer/libvo'
make -C libao2
make[1]: Entering directory `/usr/local/src/mplayer/libao2'
make[1]: Nothing to be done for `libs'.
make[1]: Leaving directory `/usr/local/src/mplayer/libao2'
make -C input
make[1]: Entering directory `/usr/local/src/mplayer/input'
make[1]: Nothing to be done for `libs'.
make[1]: Leaving directory `/usr/local/src/mplayer/input'
make -C libdha
make[1]: Entering directory `/usr/local/src/mplayer/libdha'
make[1]: Nothing to be done for `all'.
make[1]: Leaving directory `/usr/local/src/mplayer/libdha'
make -C vidix
make[1]: Entering directory `/usr/local/src/mplayer/vidix'
make -C drivers
make[2]: Entering directory `/usr/local/src/mplayer/vidix/drivers'
make[2]: Nothing to be done for `libs'.
make[2]: Leaving directory `/usr/local/src/mplayer/vidix/drivers'
make[1]: Leaving directory `/usr/local/src/mplayer/vidix'
make -C libmpcodecs
make[1]: Entering directory `/usr/local/src/mplayer/libmpcodecs'
make[1]: Nothing to be done for `libs'.
make[1]: Leaving directory `/usr/local/src/mplayer/libmpcodecs'
make -C libaf
make[1]: Entering directory `/usr/local/src/mplayer/libaf'
make[1]: Nothing to be done for `libs'.
make[1]: Leaving directory `/usr/local/src/mplayer/libaf'
make -C libmpdemux libmpdemux.a



i have the samge problem.....i try many times...any one can help ?? is the lame 's bug?
i install in centos 5 / debian / vm also have the problem....@.@
tfcservices
I am trying to install subversion using 'up2date -i subversion and I get the following error. I keep reading that you can't install subversion with cpanel/apache 1.3. If this is the case How else can I get ffmpeg and mplayer?

Thanks

Unresolvable chain of dependencies:
perl-Cwd 2.21-1.1.el3.rf requires perl(Exporter)
perl-Cwd 2.21-1.1.el3.rf requires perl(strict)
perl-Cwd 2.21-1.1.el3.rf requires perl(vars)
perl-Devel-Carp 0.04-1.1.el3.rf requires perl(Exporter)
perl-Getopt-Long 2.35-1.el3.rf requires perl
perl-Getopt-Long-2.35-1.el3.rf requires perl >= 0:5.004
perl-Getopt-Long 2.35-1.el3.rf requires perl(Exporter)
perl-Getopt-Long 2.35-1.el3.rf requires perl(constant)
perl-Getopt-Long 2.35-1.el3.rf requires perl(strict)
perl-Getopt-Long 2.35-1.el3.rf requires perl(vars)
subversion 1.3.2-0.1.el3.rf requires /usr/bin/perl
subversion 1.3.2-0.1.el3.rf requires libapr-0.so.0
subversion 1.3.2-0.1.el3.rf requires libaprutil-0.so.0
subversion-1.3.2-0.1.el3.rf requires perl(Digest::MD5) >= 2.20
subversion 1.3.2-0.1.el3.rf requires perl(English)
subversion-1.3.2-0.1.el3.rf requires perl(File::Copy) >= 2.03
subversion 1.3.2-0.1.el3.rf requires perl(File::Find)
subversion-1.3.2-0.1.el3.rf requires perl(File::Path) >= 1.04
subversion-1.3.2-0.1.el3.rf requires perl(File::Temp) >= 0.12
subversion 1.3.2-0.1.el3.rf requires perl(Text::Wrap)
subversion 1.3.2-0.1.el3.rf requires perl(strict)
subversion 1.3.2-0.1.el3.rf requires perl(vars)
Imtiaz
Here's a howto which I wrote for server setups for youtube clones. The USP of this howto is that it will work on shared hosts. So in case you are not able to get much mileage out of the howto on this thread on a shared host then give this one a try.

http://www.netbrix.net/archives/20

These instructions are known to work on Dreamhost, Bluehost, Godaddy shared and a number of dedicated hosts as well (including ThePlanet). The scripts I've seen working off this setup are clip-share, clipshare2.0Pro, social media, alstrasoft, vshare and many more.
GatorLarry
Just FYI,

There seems to be a bug in the svn release of FFmpeg regarding the switch --disable-mmx

I submitted a bug report to them, but in the meantime if you get an "internal compiler error" when trying the switch just remove it and it should compile.

Known Affected: SVN Revision 9225
funk999
Help

I executed the given code from first post, this succeccfully did my video encoding but not my thumbnail images as i got like a asf error. so i installed MPlayer-1.0rc1, that gave me the second set of coding, it didnt covert the video but made the thumbnail.

Please help!


CODE
system
("<B>/usr/local/bin/mencoder /home/funk999/public_html//video/3420.avi -o
/home/funk999/public_html//flvideo/3420x.flv -of lavf -oac mp3lame -lameopts
abr:br=56 -ovc lavc -lavcopts
vcodec=flv:vbitrate=9600:mbd=2:mv0:trell:v4mv:cbp:last_pred=3 -lavfopts
i_certify_that_my_video_stream_does_not_use_b_frames -srate 22050</B>");<BR><PRE>MEncoder dev-SVN-r23524-3.4.6 © 2000-2007 MPlayer Team
CPU: Intel® Xeon® CPU 3060 @ 2.40GHz (Family: 6, Model: 15, Stepping: 6)
CPUflags: Type: 6 MMX: 1 MMX2: 1 3DNow: 0 3DNow2: 0 SSE: 1 SSE2: 1
Compiled for x86 CPU with extensions: MMX MMX2 SSE SSE2

success: format: 0 data: 0x0 - 0x5a39d
ASF file format detected.
[asfheader] Audio stream found, -aid 1
[asfheader] Video stream found, -vid 2
libavformat file format detected.
[lavf] Audio stream found, -aid 0
[lavf] Video stream found, -vid 1
VIDEO: [WMV1] 320x240 24bpp 29.970 fps 0.0 kbps ( 0.0 kbyte/s)
[V] filefmt:35 fourcc:0x31564D57 size:320x240 fps:29.97 ftime:=0.0334
==========================================================================
Opening audio decoder: [ffmpeg] FFmpeg/libavcodec audio decoders
AUDIO: 32000 Hz, 2 ch, s16le, 32.0 kbit/3.12% (ratio: 4000-&gt;128000)
Selected audio codec: [ffwmav2] afm: ffmpeg (DivX audio v2 (FFmpeg))
==========================================================================
OK, exit
Opening video filter: [expand osd=1]
Expand: -1 x -1, -1 ; -1, osd: 1, aspect: 0.000000, round: 1
==========================================================================
Opening video decoder: [ffmpeg] FFmpeg's libavcodec codec family
Selected video codec: [ffwmv1] vfm: ffmpeg (FFmpeg M$ WMV1/WMV7)
==========================================================================
MP3 audio selected.
VDec: vo config request - 320 x 240 (preferred colorspace: Planar YV12)
VDec: using Planar YV12 as output csp (no 0)
Movie-Aspect is undefined - no prescaling applied.
videocodec: libavcodec (320x240 fourcc=31564c46 [FLV1])
[VE_LAVC] High quality encoding selected (non-realtime)!
VIDEO CODEC ID: 22
AUDIO CODEC ID: 15001, TAG: 0
Writing header...
Pos: 0.0s 1f (17%) 0.00fps Trem: 0min 0mb A-V:0.000 [0:0]
Pos: 0.1s 2f (17%) 0.00fps Trem: 0min 0mb A-V:0.003 [0:0]
Pos: 0.1s 3f (17%) 0.00fps Trem: 0min 0mb A-V:0.007 [0:0]
Pos: 0.1s 4f (17%) 0.00fps Trem: 0min 0mb A-V:0.010 [0:0]
Pos: 0.2s 5f (17%) 0.00fps Trem: 0min 0mb A-V:0.013 [0:0]
Pos: 0.2s 6f (17%) 0.00fps Trem: 0min 0mb A-V:0.017 [0:0]
Pos: 0.2s 7f (17%) 0.00fps Trem: 0min 0mb A-V:0.020 [0:0]
Pos: 0.3s 8f (17%) 0.00fps Trem: 0min 0mb A-V:0.023 [0:0]
Pos: 0.3s 9f (17%) 0.00fps Trem: 0min 0mb A-V:0.027 [0:0]
Pos: 0.3s 10f (17%) 0.00fps Trem: 0min 0mb A-V:0.030 [0:0]
Pos: 0.4s 11f (17%) 0.00fps Trem: 0min 0mb A-V:0.033 [0:0]
Pos: 0.4s 12f (17%) 0.00fps Trem: 0min 0mb A-V:0.037 [0:0]
Pos: 0.4s 13f (17%) 0.00fps Trem: 0min 0mb A-V:0.040 [0:0]
Pos: 0.5s 14f (17%) 0.00fps Trem: 0min 0mb A-V:0.043 [0:0]
Pos: 0.5s 15f (17%) 0.00fps Trem: 0min 0mb A-V:0.047 [0:0]
Pos: 0.5s 16f (17%) 0.00fps Trem: 0min 0mb A-V:0.050 [0:66]
Pos: 0.6s 17f (17%) 0.00fps Trem: 0min 0mb A-V:0.053 [0:65]
Pos: 0.6s 18f (17%) 0.00fps Trem: 0min 0mb A-V:0.057 [0:65]
Pos: 0.6s 19f (17%) 0.00fps Trem: 0min 0mb A-V:0.057 [0:64]
Pos: 0.7s 20f (17%) 0.00fps Trem: 0min 0mb A-V:0.055 [0:64]
Pos: 0.7s 21f (17%) 0.00fps Trem: 0min 0mb A-V:0.058 [0:63]
Pos: 0.7s 22f (17%) 0.00fps Trem: 0min 0mb A-V:0.062 [0:63]
Pos: 0.8s 23f (17%) 0.00fps Trem: 0min 0mb A-V:0.065 [0:63]
Pos: 0.8s 24f (17%) 0.00fps Trem: 0min 0mb A-V:0.068 [0:62]
Pos: 0.8s 25f (17%) 0.00fps Trem: 0min 0mb A-V:0.038 [0:62]
Pos: 0.8s 26f (17%) 0.00fps Trem: 0min 0mb A-V:0.042 [0:62]
Pos: 0.9s 27f (17%) 0.00fps Trem: 0min 0mb A-V:0.045 [0:62]
Pos: 0.9s 28f (17%) 0.00fps Trem: 0min 0mb A-V:0.048 [0:61]
Pos: 0.9s 29f (17%) 0.00fps Trem: 0min 0mb A-V:0.052 [0:61]
Pos: 1.0s 30f (17%) 0.00fps Trem: 0min 0mb A-V:0.055 [0:61]
Pos: 1.0s 31f (17%) 0.00fps Trem: 0min 0mb A-V:0.058 [519:62]
Pos: 1.0s 32f (17%) 0.00fps Trem: 0min 0mb A-V:0.062 [512:62]
Pos: 1.1s 33f (17%) 0.00fps Trem: 0min 0mb A-V:0.063 [510:62]
Pos: 1.1s 34f (26%) 0.00fps Trem: 0min 0mb A-V:0.066 [507:63]
Pos: 1.1s 35f (26%) 0.00fps Trem: 0min 0mb A-V:0.070 [502:62]
Pos: 1.1s 36f (26%) 0.00fps Trem: 0min 0mb A-V:0.040 [502:62]
Pos: 1.2s 37f (26%) 0.00fps Trem: 0min 0mb A-V:0.043 [511:62]
Pos: 1.2s 38f (26%) 0.00fps Trem: 0min 0mb A-V:0.044 [506:62]
Pos: 1.2s 39f (26%) 0.00fps Trem: 0min 0mb A-V:0.047 [502:62]
Pos: 1.3s 40f (26%) 0.00fps Trem: 0min 0mb A-V:0.051 [499:62]
Pos: 1.3s 41f (26%) 0.00fps Trem: 0min 0mb A-V:0.053 [493:62]
Pos: 1.3s 42f (26%) 0.00fps Trem: 0min 0mb A-V:0.053 [490:62]
Pos: 1.4s 43f (26%) 0.00fps Trem: 0min 0mb A-V:0.049 [487:63]
Pos: 1.4s 44f (26%) 0.00fps Trem: 0min 0mb A-V:0.053 [482:63]
Pos: 1.4s 45f (26%) 0.00fps Trem: 0min 0mb A-V:0.056 [482:62]
Pos: 1.5s 46f (26%) 0.00fps Trem: 0min 0mb A-V:0.059 [479:62]
Pos: 1.5s 47f (26%) 0.00fps Trem: 0min 0mb A-V:0.058 [477:62]
Pos: 1.5s 48f (26%) 0.00fps Trem: 0min 0mb A-V:0.056 [474:62]
Pos: 1.6s 49f (26%) 0.00fps Trem: 0min 0mb A-V:0.052 [476:62]
Pos: 1.6s 50f (26%) 0.00fps Trem: 0min 0mb A-V:0.056 [479:61]
Pos: 1.6s 51f (26%) 0.00fps Trem: 0min 0mb A-V:0.059 [480:61]
Pos: 1.7s 52f (26%) 0.00fps Trem: 0min 0mb A-V:0.060 [479:61]
Pos: 1.7s 53f (26%) 0.00fps Trem: 0min 0mb A-V:0.056 [481:61]
Pos: 1.7s 54f (26%) 0.00fps Trem: 0min 0mb A-V:0.053 [480:61]
Pos: 1.8s 55f (26%) 0.00fps Trem: 0min 0mb A-V:0.050 [479:61]
Pos: 1.8s 56f (26%) 0.00fps Trem: 0min 0mb A-V:0.046 [477:61]
Pos: 1.8s 57f (26%) 0.00fps Trem: 0min 0mb A-V:0.043 [544:61]
Pos: 1.9s 58f (26%) 0.00fps Trem: 0min 0mb A-V:0.040 [546:61]
Pos: 1.9s 59f (26%) 0.00fps Trem: 0min 0mb A-V:0.036 [551:60]
Pos: 1.9s 60f (26%) 0.00fps Trem: 0min 0mb A-V:0.040 [553:60]
Pos: 2.0s 61f (26%) 0.00fps Trem: 0min 0mb A-V:0.043 [556:60]
Pos: 2.0s 62f (26%) 0.00fps Trem: 0min 0mb A-V:0.043 [556:60]
Pos: 2.0s 63f (26%) 0.00fps Trem: 0min 0mb A-V:0.041 [557:60]
Pos: 2.1s 64f (26%) 0.00fps Trem: 0min 0mb A-V:0.037 [557:60]
Pos: 2.1s 65f (35%) 0.00fps Trem: 0min 0mb A-V:0.041 [557:60]
Pos: 2.1s 66f (35%) 0.00fps Trem: 0min 0mb A-V:0.044 [557:60]
Pos: 2.2s 67f (35%) 0.00fps Trem: 0min 0mb A-V:0.047 [558:60]
Pos: 2.2s 68f (35%) 0.00fps Trem: 0min 0mb A-V:0.045 [557:60]
Pos: 2.2s 69f (35%) 0.00fps Trem: 0min 0mb A-V:0.042 [557:60]
Pos: 2.3s 70f (35%) 0.00fps Trem: 0min 0mb A-V:0.039 [557:60]
Pos: 2.3s 71f (35%) 0.00fps Trem: 0min 0mb A-V:0.035 [557:60]
Pos: 2.3s 72f (35%) 0.00fps Trem: 0min 0mb A-V:0.032 [558:60]
Pos: 2.4s 73f (35%) 0.00fps Trem: 0min 0mb A-V:0.029 [561:60]
Pos: 2.4s 74f (35%) 0.00fps Trem: 0min 0mb A-V:0.025 [565:60]
Pos: 2.4s 75f (35%) 0.00fps Trem: 0min 0mb A-V:0.029 [569:59]
Pos: 2.5s 76f (35%) 0.00fps Trem: 0min 0mb A-V:0.032 [573:59]
Pos: 2.5s 77f (35%) 0.00fps Trem: 0min 0mb A-V:0.035 [579:59]
Pos: 2.5s 78f (35%) 0.00fps Trem: 0min 0mb A-V:0.035 [584:59]
Pos: 2.6s 79f (35%) 0.00fps Trem: 0min 0mb A-V:0.031 [590:59]
Pos: 2.6s 80f (35%) 0.00fps Trem: 0min 0mb A-V:0.028 [592:59]
Pos: 2.6s 81f (35%) 0.00fps Trem: 0min 0mb A-V:0.031 [595:59]
Pos: 2.7s 82f (35%) 0.00fps Trem: 0min 0mb A-V:0.035 [596:59]
Pos: 2.7s 83f (35%) 0.00fps Trem: 0min 0mb A-V:0.038 [600:59]
Pos: 2.7s 84f (35%) 0.00fps Trem: 0min 0mb A-V:0.038 [599:59]
Pos: 2.8s 85f (35%) 0.00fps Trem: 0min 0mb A-V:0.036 [599:59]
Pos: 2.8s 86f (35%) 0.00fps Trem: 0min 0mb A-V:0.039 [600:59]
Pos: 2.8s 87f (35%) 0.00fps Trem: 0min 0mb A-V:0.043 [600:59]
Pos: 2.9s 88f (35%) 0.00fps Trem: 0min 0mb A-V:0.046 [597:59]
Pos: 2.9s 89f (35%) 0.00fps Trem: 0min 0mb A-V:0.049 [595:59]
Pos: 2.9s 90f (35%) 0.00fps Trem: 0min 0mb A-V:0.047 [594:59]
Pos: 3.0s 91f (35%) 0.00fps Trem: 0min 0mb A-V:0.044 [595:59]
Pos: 3.0s 92f (35%) 0.00fps Trem: 0min 0mb A-V:0.047 [592:59]
Pos: 3.0s 93f (35%) 0.00fps Trem: 0min 0mb A-V:0.051 [591:59]
Pos: 3.1s 94f (35%) 0.00fps Trem: 0min 0mb A-V:0.052 [589:59]
Pos: 3.1s 95f (35%) 0.00fps Trem: 0min 0mb A-V:0.050 [589:59]
Pos: 3.1s 96f (35%) 0.00fps Trem: 0min 0mb A-V:0.047 [591:59]
Pos: 3.2s 97f (35%) 0.00fps Trem: 0min 0mb A-V:0.044 [596:59]
Pos: 3.2s 98f (35%) 0.00fps Trem: 0min 0mb A-V:0.047 [600:59]
Pos: 3.2s 99f (35%) 0.00fps Trem: 0min 0mb A-V:0.050 [604:59]
Pos: 3.3s 100f (35%) 0.00fps Trem: 0min 0mb A-V:0.053 [605:59]
Pos: 3.3s 101f (35%) 0.00fps Trem: 0min 0mb A-V:0.052 [604:59]
Pos: 3.3s 102f (35%) 0.00fps Trem: 0min 0mb A-V:0.049 [602:59]
Pos: 3.4s 103f (35%) 0.00fps Trem: 0min 0mb A-V:0.046 [601:59]
Pos: 3.4s 104f (35%) 0.00fps Trem: 0min 0mb A-V:0.049 [599:59]
Pos: 3.4s 105f (35%) 0.00fps Trem: 0min 0mb A-V:0.052 [598:59]
Pos: 3.5s 106f (35%) 0.00fps Trem: 0min 0mb A-V:0.054 [599:59]
Pos: 3.5s 107f (35%) 0.00fps Trem: 0min 0mb A-V:0.053 [599:59]
Pos: 3.5s 108f (44%) 0.00fps Trem: 0min 0mb A-V:0.056 [600:59]
Pos: 3.6s 109f (44%) 0.00fps Trem: 0min 0mb A-V:0.058 [602:59]
Pos: 3.6s 110f (44%) 0.00fps Trem: 0min 0mb A-V:0.058 [603:59]
Pos: 3.6s 111f (44%) 110.78fps Trem: 0min 0mb A-V:0.054 [603:59]
Pos: 3.7s 112f (44%) 111.11fps Trem: 0min 0mb A-V:0.051 [604:59]
Pos: 3.7s 113f (44%) 111.55fps Trem: 0min 0mb A-V:0.048 [605:59]
Pos: 3.7s 114f (44%) 111.66fps Trem: 0min 0mb A-V:0.051 [606:58]
Pos: 3.8s 115f (44%) 111.87fps Trem: 0min 0mb A-V:0.052 [606:58]
Pos: 3.8s 116f (44%) 112.08fps Trem: 0min 0mb A-V:0.050 [606:58]
Pos: 3.8s 117f (44%) 112.28fps Trem: 0min 0mb A-V:0.047 [607:58]
Pos: 3.9s 118f (44%) 112.27fps Trem: 0min 0mb A-V:0.043 [607:58]
Pos: 3.9s 119f (44%) 112.26fps Trem: 0min 0mb A-V:0.047 [609:58]
Pos: 3.9s 120f (44%) 112.25fps Trem: 0min 0mb A-V:0.050 [610:58]
Pos: 4.0s 121f (44%) 112.14fps Trem: 0min 0mb A-V:0.052 [611:58]
Pos: 4.0s 122f (44%) 112.13fps Trem: 0min 0mb A-V:0.049 [611:58]
Pos: 4.0s 123f (44%) 112.02fps Trem: 0min 0mb A-V:0.045 [610:58]
Pos: 4.1s 124f (44%) 112.01fps Trem: 0min 0mb A-V:0.042 [610:58]
Pos: 4.1s 125f (44%) 112.01fps Trem: 0min 0mb A-V:0.039 [609:59]
Pos: 4.1s 126f (44%) 111.80fps Trem: 0min 0mb A-V:0.035 [608:58]
Pos: 4.2s 127f (44%) 111.80fps Trem: 0min 0mb A-V:0.032 [607:58]
Pos: 4.2s 128f (44%) 111.69fps Trem: 0min 0mb A-V:0.029 [605:58]
Pos: 4.2s 129f (44%) 111.50fps Trem: 0min 0mb A-V:0.032 [604:58]
Pos: 4.3s 130f (44%) 111.49fps Trem: 0min 0mb A-V:0.035 [601:58]
Pos: 4.3s 131f (44%) 111.39fps Trem: 0min 0mb A-V:0.037 [600:58]
Pos: 4.3s 132f (44%) 111.39fps Trem: 0min 0mb A-V:0.036 [598:58]
Pos: 4.4s 133f (44%) 111.30fps Trem: 0min 0mb A-V:0.032 [597:58]
Pos: 4.4s 134f (44%) 111.20fps Trem: 0min 0mb A-V:0.036 [596:58]
Pos: 4.4s 135f (44%) 111.20fps Trem: 0min 0mb A-V:0.039 [595:58]
Pos: 4.5s 136f (44%) 111.02fps Trem: 0min 0mb A-V:0.041 [594:58]
Pos: 4.5s 137f (44%) 111.02fps Trem: 0min 0mb A-V:0.040 [593:58]
Pos: 4.5s 138f (44%) 111.02fps Trem: 0min 0mb A-V:0.037 [592:58]
Pos: 4.6s 139f (44%) 111.02fps Trem: 0min 0mb A-V:0.034 [591:58]
Pos: 4.6s 140f (53%) 110.85fps Trem: 0min 0mb A-V:0.037 [591:58]
Pos: 4.6s 141f (53%) 110.76fps Trem: 0min 0mb A-V:0.040 [590:58]
Pos: 4.7s 142f (53%) 110.76fps Trem: 0min 0mb A-V:0.043 [590:58]
Pos: 4.7s 143f (53%) 110.68fps Trem: 0min 0mb A-V:0.043 [589:58]
Pos: 4.7s 144f (53%) 110.60fps Trem: 0min 0mb A-V:0.040 [592:58]
Pos: 4.8s 145f (53%) 110.52fps Trem: 0min 0mb A-V:0.036 [594:58]
Pos: 4.8s 146f (53%) 110.36fps Trem: 0min 0mb A-V:0.040 [596:58]
Pos: 4.8s 147f (53%) 110.28fps Trem: 0min 0mb A-V:0.043 [597:58]
Pos: 4.9s 148f (53%) 110.20fps Trem: 0min 0mb A-V:0.045 [599:58]
Pos: 4.9s 149f (53%) 110.13fps Trem: 0min 0mb A-V:0.045 [600:58]
Pos: 4.9s 150f (53%) 110.05fps Trem: 0min 0mb A-V:0.048 [602:58]
Pos: 5.0s 151f (53%) 109.90fps Trem: 0min 0mb A-V:0.052 [603:58]
Pos: 5.0s 152f (53%) 109.91fps Trem: 0min 0mb A-V:0.055 [604:58]
Pos: 5.0s 153f (53%) 109.91fps Trem: 0min 0mb A-V:0.058 [603:58]
Pos: 5.1s 154f (53%) 109.92fps Trem: 0min 0mb A-V:0.058 [603:59]
Pos: 5.1s 155f (53%) 110.01fps Trem: 0min 0mb A-V:0.061 [602:59]
Pos: 5.1s 156f (53%) 110.09fps Trem: 0min 0mb A-V:0.064 [602:59]
Pos: 5.2s 157f (53%) 110.18fps Trem: 0min 0mb A-V:0.068 [601:59]
Pos: 5.2s 158f (53%) 110.80fps Trem: 0min 0mb A-V:0.032 [601:58]
Pos: 5.2s 159f (53%) 110.88fps Trem: 0min 0mb A-V:0.031 [603:58]
Pos: 5.2s 160f (53%) 111.03fps Trem: 0min 0mb A-V:0.034 [602:58]
Pos: 5.3s 161f (53%) 111.26fps Trem: 0min 0mb A-V:0.037 [600:58]
Pos: 5.3s 162f (53%) 111.49fps Trem: 0min 0mb A-V:0.040 [599:58]
Pos: 5.3s 163f (53%) 111.64fps Trem: 0min 0mb A-V:0.037 [597:58]
Pos: 5.4s 164f (62%) 111.87fps Trem: 0min 0mb A-V:0.041 [596:59]
Pos: 5.4s 165f (62%) 112.09fps Trem: 0min 0mb A-V:0.044 [594:59]
Pos: 5.4s 166f (62%) 112.16fps Trem: 0min 0mb A-V:0.043 [593:59]
Pos: 5.5s 167f (62%) 112.31fps Trem: 0min 0mb A-V:0.040 [593:59]
Pos: 5.5s 168f (62%) 112.37fps Trem: 0min 0mb A-V:0.043 [593:59]
Pos: 5.5s 169f (62%) 112.52fps Trem: 0min 0mb A-V:0.046 [592:59]
Pos: 5.6s 170f (62%) 112.58fps Trem: 0min 0mb A-V:0.043 [592:59]
Pos: 5.6s 171f (62%) 112.72fps Trem: 0min 0mb A-V:0.039 [591:59]
Pos: 5.6s 172f (62%) 112.86fps Trem: 0min 0mb A-V:0.043 [591:59]
Pos: 5.7s 173f (62%) 113.00fps Trem: 0min 0mb A-V:0.045 [590:59]
Pos: 5.7s 174f (62%) 113.13fps Trem: 0min 0mb A-V:0.045 [589:59]
Pos: 5.7s 175f (62%) 113.34fps Trem: 0min 0mb A-V:0.042 [588:59]
Pos: 5.8s 176f (62%) 113.55fps Trem: 0min 0mb A-V:0.039 [587:59]
Pos: 5.8s 177f (62%) 113.61fps Trem: 0min 0mb A-V:0.042 [586:59]
Pos: 5.8s 178f (62%) 113.81fps Trem: 0min 0mb A-V:0.045 [585:59]
Pos: 5.9s 179f (62%) 114.01fps Trem: 0min 0mb A-V:0.049 [585:59]
Pos: 5.9s 180f (62%) 114.14fps Trem: 0min 0mb A-V:0.049 [583:59]
Pos: 5.9s 181f (62%) 114.20fps Trem: 0min 0mb A-V:0.052 [582:59]
Pos: 6.0s 182f (62%) 114.39fps Trem: 0min 0mb A-V:0.054 [581:59]
Pos: 6.0s 183f (62%) 114.52fps Trem: 0min 0mb A-V:0.054 [580:59]
Pos: 6.0s 184f (62%) 114.64fps Trem: 0min 0mb A-V:0.050 [579:59]
Pos: 6.1s 185f (62%) 114.76fps Trem: 0min 0mb A-V:0.047 [578:59]
Pos: 6.1s 186f (62%) 114.89fps Trem: 0min 0mb A-V:0.044 [577:59]
Pos: 6.1s 187f (62%) 115.01fps Trem: 0min 0mb A-V:0.047 [577:59]
Pos: 6.2s 188f (62%) 115.13fps Trem: 0min 0mb A-V:0.050 [576:59]
Pos: 6.2s 189f (62%) 115.31fps Trem: 0min 0mb A-V:0.051 [575:59]
Pos: 6.2s 190f (62%) 115.43fps Trem: 0min 0mb A-V:0.049 [575:59]
Pos: 6.3s 191f (62%) 115.41fps Trem: 0min 0mb A-V:0.053 [574:59]
Pos: 6.3s 192f (62%) 115.38fps Trem: 0min 0mb A-V:0.054 [574:59]
Pos: 6.3s 193f (62%) 115.43fps Trem: 0min 0mb A-V:0.053 [574:59]
Pos: 6.4s 194f (62%) 115.48fps Trem: 0min 0mb A-V:0.050 [573:59]
Pos: 6.4s 195f (70%) 115.52fps Trem: 0min 0mb A-V:0.053 [572:59]
Pos: 6.4s 196f (70%) 115.57fps Trem: 0min 0mb A-V:0.055 [571:59]
Pos: 6.5s 197f (70%) 115.68fps Trem: 0min 0mb A-V:0.055 [570:59]
Pos: 6.5s 198f (70%) 115.79fps Trem: 0min 0mb A-V:0.051 [570:59]
Pos: 6.5s 199f (70%) 115.83fps Trem: 0min 0mb A-V:0.048 [569:59]
Pos: 6.6s 200f (70%) 115.94fps Trem: 0min 0mb A-V:0.045 [568:59]
Pos: 6.6s 201f (70%) 116.05fps Trem: 0min 0mb A-V:0.041 [567:59]
Pos: 6.6s 202f (70%) 116.03fps Trem: 0min 0mb A-V:0.045 [567:59]
Pos: 6.7s 203f (70%) 116.07fps Trem: 0min 0mb A-V:0.047 [566:59]
Pos: 6.7s 204f (70%) 116.17fps Trem: 0min 0mb A-V:0.047 [566:58]
Pos: 6.7s 205f (70%) 115.88fps Trem: 0min 0mb A-V:0.045 [594:58]
Pos: 6.8s 206f (70%) 115.73fps Trem: 0min 0mb A-V:0.041 [594:58]
Pos: 6.8s 207f (70%) 115.45fps Trem: 0min 0mb A-V:0.038 [595:58]
Pos: 6.8s 208f (70%) 115.30fps Trem: 0min 0mb A-V:0.035 [595:58]
Pos: 6.9s 209f (70%) 115.15fps Trem: 0min 0mb A-V:0.031 [595:58]
Pos: 6.9s 210f (70%) 114.94fps Trem: 0min 0mb A-V:0.035 [594:58]
Pos: 6.9s 211f (70%) 114.86fps Trem: 0min 0mb A-V:0.038 [594:58]
Pos: 7.0s 212f (70%) 114.78fps Trem: 0min 0mb A-V:0.038 [593:58]
Pos: 7.0s 213f (70%) 114.70fps Trem: 0min 0mb A-V:0.035 [592:58]
Pos: 7.0s 214f (70%) 114.62fps Trem: 0min 0mb A-V:0.031 [591:58]
Pos: 7.1s 215f (70%) 114.67fps Trem: 0min 0mb A-V:0.028 [590:58]
Pos: 7.1s 216f (70%) 114.59fps Trem: 0min 0mb A-V:0.031 [590:58]
Pos: 7.1s 217f (70%) 114.57fps Trem: 0min 0mb A-V:0.033 [590:58]
Pos: 7.2s 218f (70%) 114.56fps Trem: 0min 0mb A-V:0.032 [590:58]
Pos: 7.2s 219f (70%) 114.54fps Trem: 0min 0mb A-V:0.029 [590:58]
Pos: 7.2s 220f (70%) 114.40fps Trem: 0min 0mb A-V:0.026 [591:58]
Pos: 7.3s 221f (70%) 114.33fps Trem: 0min 0mb A-V:0.022 [591:58]
Pos: 7.3s 222f (70%) 114.32fps Trem: 0min 0mb A-V:0.019 [590:58]
Pos: 7.3s 223f (70%) 114.30fps Trem: 0min 0mb A-V:0.016 [589:58]
Pos: 7.4s 224f (70%) 114.29fps Trem: 0min 0mb A-V:0.019 [588:58]
Pos: 7.4s 225f (70%) 114.21fps Trem: 0min 0mb A-V:0.021 [588:58]
Pos: 7.4s 226f (70%) 114.14fps Trem: 0min 0mb A-V:0.021 [588:58]
Pos: 7.5s 227f (70%) 114.01fps Trem: 0min 0mb A-V:0.018 [588:58]
Pos: 7.5s 228f (70%) 113.94fps Trem: 0min 0mb A-V:0.015 [588:58]
Pos: 7.5s 229f (79%) 113.87fps Trem: 0min 0mb A-V:0.018 [587:58]
Pos: 7.6s 230f (79%) 113.86fps Trem: 0min 0mb A-V:0.021 [586:58]
Pos: 7.6s 231f (79%) 113.74fps Trem: 0min 0mb A-V:0.022 [585:58]
Pos: 7.6s 232f (79%) 113.73fps Trem: 0min 0mb A-V:0.020 [584:58]
Pos: 7.7s 233f (79%) 113.71fps Trem: 0min 0mb A-V:0.017 [583:58]
Pos: 7.7s 234f (79%) 113.65fps Trem: 0min 0mb A-V:0.013 [582:58]
Pos: 7.7s 235f (79%) 113.58fps Trem: 0min 0mb A-V:0.017 [581:58]
Pos: 7.8s 236f (79%) 113.57fps Trem: 0min 0mb A-V:0.020 [580:58]
Pos: 7.8s 237f (79%) 113.61fps Trem: 0min 0mb A-V:0.022 [579:58]
Pos: 7.8s 238f (79%) 113.55fps Trem: 0min 0mb A-V:0.018 [578:58]
Pos: 7.9s 239f (79%) 113.49fps Trem: 0min 0mb A-V:0.015 [577:58]
Pos: 7.9s 240f (79%) 113.53fps Trem: 0min 0mb A-V:0.012 [576:58]
Pos: 7.9s 241f (79%) 113.47fps Trem: 0min 0mb A-V:0.015 [575:58]
Pos: 8.0s 242f (79%) 113.40fps Trem: 0min 0mb A-V:0.018 [574:58]
Pos: 8.0s 243f (79%) 113.34fps Trem: 0min 0mb A-V:0.021 [573:58]
Pos: 8.0s 244f (79%) 113.33fps Trem: 0min 0mb A-V:0.021 [572:58]
Pos: 8.1s 245f (79%) 113.27fps Trem: 0min 0mb A-V:0.019 [572:58]
Pos: 8.1s 246f (79%) 113.10fps Trem: 0min 0mb A-V:0.015 [572:58]
Pos: 8.1s 247f (79%) 113.04fps Trem: 0min 0mb A-V:0.012 [571:58]
Pos: 8.2s 248f (79%) 112.98fps Trem: 0min 0mb A-V:0.009 [571:58]
Pos: 8.2s 249f (79%) 112.87fps Trem: 0min 0mb A-V:0.012 [570:58]
Pos: 8.2s 250f (79%) 112.87fps Trem: 0min 0mb A-V:0.015 [569:58]
Pos: 8.3s 251f (79%) 112.81fps Trem: 0min 0mb A-V:0.018 [569:58]
Pos: 8.3s 252f (79%) 112.75fps Trem: 0min 0mb A-V:0.018 [568:58]
Pos: 8.3s 253f (79%) 112.59fps Trem: 0min 0mb A-V:0.015 [568:58]
Pos: 8.4s 254f (79%) 112.79fps Trem: 0min 0mb A-V:0.018 [587:58]
Pos: 8.4s 255f (79%) 112.68fps Trem: 0min 0mb A-V:0.021 [586:58]
Pos: 8.4s 256f (79%) 112.53fps Trem: 0min 0mb A-V:0.021 [586:58]
Pos: 8.5s 257f (79%) 112.42fps Trem: 0min 0mb A-V:0.019 [586:58]
Pos: 8.5s 258f (79%) 112.32fps Trem: 0min 0mb A-V:0.016 [586:58]
Pos: 8.5s 259f (79%) 112.17fps Trem: 0min 0mb A-V:0.012 [587:58]
Pos: 8.6s 260f (79%) 112.02fps Trem: 0min 0mb A-V:0.016 [587:58]
Pos: 8.6s 261f (79%) 111.92fps Trem: 0min 0mb A-V:0.019 [587:58]
Pos: 8.6s 262f (79%) 111.82fps Trem: 0min 0mb A-V:0.020 [587:58]
Pos: 8.7s 263f (79%) 111.77fps Trem: 0min 0mb A-V:0.019 [586:58]
Pos: 8.7s 264f (79%) 111.72fps Trem: 0min 0mb A-V:0.016 [586:58]
Pos: 8.7s 265f (79%) 111.67fps Trem: 0min 0mb A-V:0.012 [586:58]
Pos: 8.8s 266f (79%) 111.62fps Trem: 0min 0mb A-V:0.009 [585:58]
Pos: 8.8s 267f (79%) 111.48fps Trem: 0min 0mb A-V:0.012 [584:58]
Pos: 8.8s 268f (79%) 111.43fps Trem: 0min 0mb A-V:0.016 [584:58]
Pos: 8.9s 269f (79%) 111.34fps Trem: 0min 0mb A-V:0.019 [583:58]
Pos: 8.9s 270f (79%) 111.25fps Trem: 0min 0mb A-V:0.020 [583:58]
Pos: 8.9s 271f (79%) 111.16fps Trem: 0min 0mb A-V:0.017 [583:58]
Pos: 9.0s 272f (79%) 111.11fps Trem: 0min 0mb A-V:0.013 [582:58]
Pos: 9.0s 273f (79%) 111.02fps Trem: 0min 0mb A-V:0.010 [582:58]
Pos: 9.0s 274f (88%) 110.93fps Trem: 0min 0mb A-V:0.013 [585:58]
Pos: 9.1s 275f (88%) 110.98fps Trem: 0min 0mb A-V:0.016 [584:58]
Pos: 9.1s 276f (88%) 110.93fps Trem: 0min 0mb A-V:0.015 [583:58]
Pos: 9.1s 277f (88%) 110.93fps Trem: 0min 0mb A-V:0.012 [583:58]
Pos: 9.2s 278f (88%) 110.89fps Trem: 0min 0mb A-V:0.009 [582:58]
Pos: 9.2s 279f (88%) 110.85fps Trem: 0min 0mb A-V:0.005 [581:58]
Pos: 9.2s 280f (88%) 110.80fps Trem: 0min 0mb A-V:0.002 [581:58]
Pos: 9.3s 281f (88%) 110.80fps Trem: 0min 0mb A-V:-0.001 [581:58]
Pos: 9.3s 282f (88%) 110.72fps Trem: 0min 0mb A-V:-0.005 [581:58]
Pos: 9.3s 283f (88%) 110.68fps Trem: 0min 0mb A-V:-0.001 [580:58]
Pos: 9.4s 284f (88%) 110.59fps Trem: 0min 0mb A-V:0.002 [580:58]
Pos: 9.4s 285f (88%) 110.47fps Trem: 0min 0mb A-V:0.004 [581:58]
Pos: 9.4s 286f (88%) 110.38fps Trem: 0min 0mb A-V:0.002 [581:58]
Pos: 9.5s 287f (88%) 110.34fps Trem: 0min 0mb A-V:-0.001 [581:58]
Pos: 9.5s 288f (88%) 110.26fps Trem: 0min 0mb A-V:-0.004 [581:58]
Pos: 9.5s 289f (88%) 110.18fps Trem: 0min 0mb A-V:-0.008 [582:58]
Pos: 9.6s 290f (88%) 110.10fps Trem: 0min 0mb A-V:-0.011 [582:58]
Pos: 9.6s 291f (88%) 109.98fps Trem: 0min 0mb A-V:-0.008 [582:58]
Pos: 9.6s 292f (88%) 109.90fps Trem: 0min 0mb A-V:-0.004 [582:58]
Pos: 9.7s 293f (88%) 109.78fps Trem: 0min 0mb A-V:-0.003 [582:58]
Pos: 9.7s 294f (88%) 109.66fps Trem: 0min 0mb A-V:-0.004 [583:58]
Pos: 9.7s 295f (88%) 109.58fps Trem: 0min 0mb A-V:-0.007 [583:58]
Pos: 9.8s 296f (88%) 109.47fps Trem: 0min 0mb A-V:-0.011 [584:58]
Pos: 9.8s 297f (88%) 109.39fps Trem: 0min 0mb A-V:-0.014 [584:58]
Pos: 9.8s 298f (88%) 109.32fps Trem: 0min 0mb A-V:-0.017 [584:58]
Pos: 9.9s 299f (88%) 109.24fps Trem: 0min 0mb A-V:-0.014 [585:58]
Pos: 9.9s 300f (88%) 109.09fps Trem: 0min 0mb A-V:-0.011 [585:58]
Pos: 9.9s 301f (88%) 109.02fps Trem: 0min 0mb A-V:-0.009 [585:58]
Pos: 10.0s 302f (88%) 108.95fps Trem: 0min 0mb A-V:-0.010 [585:58]
Pos: 10.0s 303f (88%) 108.88fps Trem: 0min 0mb A-V:-0.013 [586:58]
Pos: 10.0s 304f (88%) 108.77fps Trem: 0min 0mb A-V:-0.010 [586:58]
Pos: 10.1s 305f (88%) 108.73fps Trem: 0min 0mb A-V:-0.007 [585:58]
Pos: 10.1s 306f (88%) 108.66fps Trem: 0min 0mb A-V:-0.003 [585:58]
Pos: 10.1s 307f (88%) 108.56fps Trem: 0min 0mb A-V:-0.004 [585:58]
Pos: 10.2s 308f (88%) 108.49fps Trem: 0min 0mb A-V:-0.007 [585:58]
Pos: 10.2s 309f (88%) 108.42fps Trem: 0min 0mb A-V:-0.010 [585:58]
Pos: 10.2s 310f (97%) 108.32fps Trem: 0min 0mb A-V:-0.007 [585:58]
Pos: 10.3s 311f (97%) 108.21fps Trem: 0min 0mb A-V:-0.004 [585:58]
Pos: 10.3s 312f (97%) 108.11fps Trem: 0min 0mb A-V:-0.001 [585:58]
Pos: 10.3s 313f (97%) 108.01fps Trem: 0min 0mb A-V:-0.001 [586:58]
Pos: 10.4s 314f (97%) 107.90fps Trem: 0min 0mb A-V:-0.004 [586:58]
Pos: 10.4s 315f (97%) 107.80fps Trem: 0min 0mb A-V:-0.001 [587:58]
Pos: 10.4s 316f (97%) 107.70fps Trem: 0min 0mb A-V:0.002 [588:58]
Pos: 10.5s 317f (97%) 107.64fps Trem: 0min 0mb A-V:0.006 [588:58]
Pos: 10.5s 318f (97%) 107.58fps Trem: 0min 0mb A-V:0.007 [587:58]
Pos: 10.5s 319f (97%) 107.52fps Trem: 0min 0mb A-V:0.011 [587:58]
Pos: 10.6s 320f (97%) 107.42fps Trem: 0min 0mb A-V:0.014 [588:58]
Pos: 10.6s 321f (97%) 107.36fps Trem: 0min 0mb A-V:0.017 [588:58]
Pos: 10.6s 322f (97%) 107.33fps Trem: 0min 0mb A-V:0.019 [588:58]
Pos: 10.7s 323f (97%) 107.27fps Trem: 0min 0mb A-V:0.022 [588:58]
Pos: 10.7s 324f (97%) 107.21fps Trem: 0min 0mb A-V:0.025 [587:58]
Pos: 10.7s 325f (97%) 107.15fps Trem: 0min 0mb A-V:0.027 [587:58]
Pos: 10.8s 326f (97%) 107.06fps Trem: 0min 0mb A-V:0.026 [587:58]
Pos: 10.8s 327f (97%) 107.00fps Trem: 0min 0mb A-V:0.030 [587:58]
Pos: 10.8s 328f (97%) 106.98fps Trem: 0min 0mb A-V:0.033 [587:58]
Pos: 10.9s 329f (97%) 106.85fps Trem: 0min 0mb A-V:0.032 [587:58]
Pos: 10.9s 330f (97%) 106.80fps Trem: 0min 0mb A-V:0.029 [587:58]
Pos: 10.9s 331f (97%) 106.74fps Trem: 0min 0mb A-V:0.026 [587:58]
Pos: 11.0s 332f (97%) 106.65fps Trem: 0min 0mb A-V:0.022 [587:58]
Pos: 11.0s 333f (97%) 106.59fps Trem: 0min 0mb A-V:0.019 [587:58]
Pos: 11.0s 334f (97%) 106.54fps Trem: 0min 0mb A-V:0.016 [586:58]
Pos: 11.1s 335f (97%) 106.48fps Trem: 0min 0mb A-V:0.012 [586:58]
Pos: 11.1s 336f (97%) 106.40fps Trem: 0min 0mb A-V:0.016 [586:58]
Pos: 11.1s 337f (97%) 106.34fps Trem: 0min 0mb A-V:0.019 [586:58]
Pos: 11.2s 338f (97%) 106.29fps Trem: 0min 0mb A-V:0.022 [586:58]
Pos: 11.2s 339f (97%) 106.20fps Trem: 0min 0mb A-V:0.021 [585:58]
Pos: 11.2s 340f (97%) 106.15fps Trem: 0min 0mb A-V:0.018 [585:58]
Pos: 11.3s 341f (97%) 106.10fps Trem: 0min 0mb A-V:0.014 [585:57]
Pos: 11.3s 342f (97%) 106.05fps Trem: 0min 0mb A-V:0.011 [585:58]
Pos: 11.3s 343f (97%) 106.00fps Trem: 0min 0mb A-V:0.014 [585:58]
Pos: 11.4s 344f (97%) 105.94fps Trem: 0min 0mb A-V:0.017 [585:58]
Pos: 11.4s 345f (97%) 105.89fps Trem: 0min 0mb A-V:0.017 [585:58]
Pos: 11.4s 346f (97%) 105.84fps Trem: 0min 0mb A-V:0.014 [585:58]
Pos: 11.5s 347f (97%) 105.79fps Trem: 0min 0mb A-V:0.018 [585:58]
Pos: 11.5s 348f (97%) 105.81fps Trem: 0min 0mb A-V:0.020 [584:58]
Pos: 11.5s 349f (97%) 105.79fps Trem: 0min 0mb A-V:0.019 [584:58]
Pos: 11.6s 350f (97%) 105.71fps Trem: 0min 0mb A-V:0.016 [583:58]
Pos: 11.6s 351f (97%) 105.69fps Trem: 0min 0mb A-V:0.012 [583:58]
Pos: 11.6s 352f (100%) 105.64fps Trem: 0min 0mb A-V:0.016 [583:58]
Pos: 11.7s 353f (100%) 105.63fps Trem: 0min 0mb A-V:0.019 [583:58]
Pos: 11.7s 354f (100%) 105.58fps Trem: 0min 0mb A-V:0.021 [582:58]
Pos: 11.7s 355f (100%) 105.53fps Trem: 0min 0mb A-V:0.020 [582:58]
Pos: 11.8s 356f (100%) 105.51fps Trem: 0min 0mb A-V:0.017 [582:58]
Pos: 11.8s 357f (100%) 105.47fps Trem: 0min 0mb A-V:0.020 [582:57]
Pos: 11.8s 358f (100%) 105.42fps Trem: 0min 0mb A-V:0.023 [582:57]
Pos: 11.9s 359f (100%) 105.40fps Trem: 0min 0mb A-V:0.027 [582:57]
Pos: 11.9s 360f (100%) 105.39fps Trem: 0min 0mb A-V:0.030 [581:57]
Pos: 11.9s 361f (100%) 105.40fps Trem: 0min 0mb A-V:0.032 [581:57]
Pos: 12.0s 362f (100%) 105.39fps Trem: 0min 0mb A-V:0.035 [581:57]
Pos: 12.0s 363f (100%) 105.37fps Trem: 0min 0mb A-V:0.037 [581:57]
Pos: 12.0s 364f (100%) 105.35fps Trem: 0min 0mb A-V:0.039 [581:57]
Pos: 12.1s 365f (100%) 105.37fps Trem: 0min 0mb A-V:0.041 [581:57]
Pos: 12.1s 366f (100%) 105.35fps Trem: 0min 0mb A-V:0.043 [580:57]
Pos: 12.1s 367f (100%) 105.37fps Trem: 0min 0mb A-V:0.044 [580:57]
Flushing video frames.
Writing index...

Video stream: 580.438 kbit/s (72554 B/s) size: 881212 bytes 12.145 secs 367 frames

Audio stream: 57.970 kbit/s (7246 B/s) size: 89534 bytes 12.356 secs
</PRE><BR>system(<B>/usr/local/bin/mplayer
/home/funk999/public_html/video/3420.avi -ss 23 -nosound -vo
jpeg:outdir=/home/funk999/public_html/tmp/3420 -frames 2</B>)<BR><PRE>MPlayer dev-SVN-r23524-3.4.6 © 2000-2007 MPlayer Team
CPU: Intel® Xeon® CPU 3060 @ 2.40GHz (Family: 6, Model: 15, Stepping: 6)
CPUflags: MMX: 1 MMX2: 1 3DNow: 0 3DNow2: 0 SSE: 1 SSE2: 1
Compiled for x86 CPU with extensions: MMX MMX2 SSE SSE2
Terminal type `unknown' is not defined.

Playing /home/funk999/public_html/video/3420.avi.
ASF file format detected.
[asfheader] Audio stream found, -aid 1
[asfheader] Video stream found, -vid 2
libavformat file format detected.
[lavf] Audio stream found, -aid 0
[lavf] Video stream found, -vid 1
VIDEO: [WMV1] 320x240 24bpp 29.970 fps 0.0 kbps ( 0.0 kbyte/s)
Clip info:
author: Microsoft
copyright: 1/1/2001
jpeg: Parsing suboptions.
jpeg: Progressive JPEG disabled.
jpeg: Baseline JPEG enabled.
jpeg: Suboptions parsed OK.
==========================================================================
Opening video decoder: [ffmpeg] FFmpeg's libavcodec codec family
Selected video codec: [ffwmv1] vfm: ffmpeg (FFmpeg M$ WMV1/WMV7)
==========================================================================
Audio: no sound
Starting playback...
[asf @ 0x860d4e0]asf_read_pts failed
[asf @ 0x860d4e0]asf_read_pts failed
[asf @ 0x860d4e0]asf_read_pts failed
[asf @ 0x860d4e0]asf_read_pts failed
[asf @ 0x860d4e0]freeing incomplete packet size 733, new 781
[asf @ 0x860d4e0]asf_read_pts failed
[asf @ 0x860d4e0]freeing incomplete packet size 759, new 800
[asf @ 0x860d4e0]asf_read_pts failed
[asf @ 0x860d4e0]freeing incomplete packet size 707, new 830
[asf @ 0x860d4e0]freeing incomplete packet size 440, new 543
[asf @ 0x860d4e0]asf_read_pts failed
V: 0.0 0/ 0 ??% ??% ??,?% 0 0

Exiting... (End of file)
</PRE>system(<B>/usr/local/bin/mplayer /home/funk999/public_html/video/3420.avi
-ss 23 -nosound -vo jpeg:outdir=/home/funk999/public_html/tmp/3420 -frames
2</B>)<BR><PRE>MPlayer dev-SVN-r23524-3.4.6 © 2000-2007 MPlayer Team
CPU: Intel® Xeon® CPU 3060 @ 2.40GHz (Family: 6, Model: 15, Stepping: 6)
CPUflags: MMX: 1 MMX2: 1 3DNow: 0 3DNow2: 0 SSE: 1 SSE2: 1
Compiled for x86 CPU with extensions: MMX MMX2 SSE SSE2
Terminal type `unknown' is not defined.

Playing /home/funk999/public_html/video/3420.avi.
ASF file format detected.
[asfheader] Audio stream found, -aid 1
[asfheader] Video stream found, -vid 2
libavformat file format detected.
[lavf] Audio stream found, -aid 0
[lavf] Video stream found, -vid 1
VIDEO: [WMV1] 320x240 24bpp 29.970 fps 0.0 kbps ( 0.0 kbyte/s)
Clip info:
author: Microsoft
copyright: 1/1/2001
jpeg: Parsing suboptions.
jpeg: Progressive JPEG disabled.
jpeg: Baseline JPEG enabled.
jpeg: Suboptions parsed OK.
==========================================================================
Opening video decoder: [ffmpeg] FFmpeg's libavcodec codec family
Selected video codec: [ffwmv1] vfm: ffmpeg (FFmpeg M$ WMV1/WMV7)
==========================================================================
Audio: no sound
Starting playback...
[asf @ 0x860d4e0]asf_read_pts failed
[asf @ 0x860d4e0]asf_read_pts failed
[asf @ 0x860d4e0]asf_read_pts failed
[asf @ 0x860d4e0]asf_read_pts failed
[asf @ 0x860d4e0]freeing incomplete packet size 733, new 781
[asf @ 0x860d4e0]asf_read_pts failed
[asf @ 0x860d4e0]freeing incomplete packet size 759, new 800
[asf @ 0x860d4e0]asf_read_pts failed
[asf @ 0x860d4e0]freeing incomplete packet size 707, new 830
[asf @ 0x860d4e0]freeing incomplete packet size 440, new 543
[asf @ 0x860d4e0]asf_read_pts failed
V: 0.0 0/ 0 ??% ??% ??,?% 0 0

Exiting... (End of file)
</PRE>system(<B>/usr/local/bin/mplayer /home/funk999/public_html/video/3420.avi
-ss 23 -nosound -vo jpeg:outdir=/home/funk999/public_html/tmp/3420 -frames
2</B>)<BR><PRE>MPlayer dev-SVN-r23524-3.4.6 © 2000-2007 MPlayer Team
CPU: Intel® Xeon® CPU 3060 @ 2.40GHz (Family: 6, Model: 15, Stepping: 6)
CPUflags: MMX: 1 MMX2: 1 3DNow: 0 3DNow2: 0 SSE: 1 SSE2: 1
Compiled for x86 CPU with extensions: MMX MMX2 SSE SSE2
Terminal type `unknown' is not defined.

Playing /home/funk999/public_html/video/3420.avi.
ASF file format detected.
[asfheader] Audio stream found, -aid 1
[asfheader] Video stream found, -vid 2
libavformat file format detected.
[lavf] Audio stream found, -aid 0
[lavf] Video stream found, -vid 1
VIDEO: [WMV1] 320x240 24bpp 29.970 fps 0.0 kbps ( 0.0 kbyte/s)
Clip info:
author: Microsoft
copyright: 1/1/2001
jpeg: Parsing suboptions.
jpeg: Progressive JPEG disabled.
jpeg: Baseline JPEG enabled.
jpeg: Suboptions parsed OK.
==========================================================================
Opening video decoder: [ffmpeg] FFmpeg's libavcodec codec family
Selected video codec: [ffwmv1] vfm: ffmpeg (FFmpeg M$ WMV1/WMV7)
==========================================================================
Audio: no sound
Starting playback...
[asf @ 0x860d4e0]asf_read_pts failed
[asf @ 0x860d4e0]asf_read_pts failed
[asf @ 0x860d4e0]asf_read_pts failed
[asf @ 0x860d4e0]asf_read_pts failed
[asf @ 0x860d4e0]freeing incomplete packet size 733, new 781
[asf @ 0x860d4e0]asf_read_pts failed
[asf @ 0x860d4e0]freeing incomplete packet size 759, new 800
[asf @ 0x860d4e0]asf_read_pts failed
[asf @ 0x860d4e0]freeing incomplete packet size 707, new 830
[asf @ 0x860d4e0]freeing incomplete packet size 440, new 543
[asf @ 0x860d4e0]asf_read_pts failed
V: 0.0 0/ 0 ??% ??% ??,?% 0 0

Exiting... (End of file)
</PRE>system(<B>/usr/local/bin/mplayer /home/funk999/public_html/video/3420.avi
-ss 23 -nosound -vo jpeg:outdir=/home/funk999/public_html/tmp/3420 -frames
2</B>)<BR><PRE>MPlayer dev-SVN-r23524-3.4.6 © 2000-2007 MPlayer Team
CPU: Intel® Xeon® CPU 3060 @ 2.40GHz (Family: 6, Model: 15, Stepping: 6)
CPUflags: MMX: 1 MMX2: 1 3DNow: 0 3DNow2: 0 SSE: 1 SSE2: 1
Compiled for x86 CPU with extensions: MMX MMX2 SSE SSE2
Terminal type `unknown' is not defined.

Playing /home/funk999/public_html/video/3420.avi.
ASF file format detected.
[asfheader] Audio stream found, -aid 1
[asfheader] Video stream found, -vid 2
libavformat file format detected.
[lavf] Audio stream found, -aid 0
[lavf] Video stream found, -vid 1
VIDEO: [WMV1] 320x240 24bpp 29.970 fps 0.0 kbps ( 0.0 kbyte/s)
Clip info:
author: Microsoft
copyright: 1/1/2001
jpeg: Parsing suboptions.
jpeg: Progressive JPEG disabled.
jpeg: Baseline JPEG enabled.
jpeg: Suboptions parsed OK.
==========================================================================
Opening video decoder: [ffmpeg] FFmpeg's libavcodec codec family
Selected video codec: [ffwmv1] vfm: ffmpeg (FFmpeg M$ WMV1/WMV7)
==========================================================================
Audio: no sound
Starting playback...
[asf @ 0x860d4e0]asf_read_pts failed
[asf @ 0x860d4e0]asf_read_pts failed
[asf @ 0x860d4e0]asf_read_pts failed
[asf @ 0x860d4e0]asf_read_pts failed
[asf @ 0x860d4e0]freeing incomplete packet size 733, new 781
[asf @ 0x860d4e0]asf_read_pts failed
[asf @ 0x860d4e0]freeing incomplete packet size 759, new 800
[asf @ 0x860d4e0]asf_read_pts failed
[asf @ 0x860d4e0]freeing incomplete packet size 707, new 830
[asf @ 0x860d4e0]freeing incomplete packet size 440, new 543
[asf @ 0x860d4e0]asf_read_pts failed
V: 0.0 0/ 0 ??% ??% ??,?% 0 0

Exiting... (End of file)
</PRE>system ("flvtool2 -Uv /home/funk999/public_html/flvideo/3420x.flv
/home/funk999/public_html/flvideo/3420.flv");<BR><PRE></PRE><BR>
<HR>
exec (/usr/local/bin/mplayer -vo null -ao null -frames 0 -identify
/home/funk999/public_html/video/3420.avi)<BR><PRE>Array
(
[0] =&gt; MPlayer dev-SVN-r23524-3.4.6 © 2000-2007 MPlayer Team
[1] =&gt; CPU: Intel® Xeon® CPU 3060 @ 2.40GHz (Family: 6, Model: 15, Stepping: 6)
[2] =&gt; CPUflags: MMX: 1 MMX2: 1 3DNow: 0 3DNow2: 0 SSE: 1 SSE2: 1
[3] =&gt; Compiled for x86 CPU with extensions: MMX MMX2 SSE SSE2
[4] =&gt; Terminal type `unknown' is not defined.
[5] =&gt;
[6] =&gt; Playing /home/funk999/public_html/video/3420.avi.
[7] =&gt; ASF file format detected.
[8] =&gt; ID_AUDIO_ID=1
[9] =&gt; [asfheader] Audio stream found, -aid 1
[10] =&gt; ID_VIDEO_ID=2
[11] =&gt; [asfheader] Video stream found, -vid 2
[12] =&gt; ID_VIDEO_ID=0
[13] =&gt; libavformat file format detected.
[14] =&gt; ID_AUDIO_ID=0
[15] =&gt; [lavf] Audio stream found, -aid 0
[16] =&gt; ID_VIDEO_ID=1
[17] =&gt; [lavf] Video stream found, -vid 1
[18] =&gt; VIDEO: [WMV1] 320x240 24bpp 29.970 fps 0.0 kbps ( 0.0 kbyte/s)
[19] =&gt; Clip info:
[20] =&gt; author: Microsoft
[21] =&gt; ID_CLIP_INFO_NAME0=author
[22] =&gt; ID_CLIP_INFO_VALUE0=Microsoft
[23] =&gt; copyright: 1/1/2001
[24] =&gt; ID_CLIP_INFO_NAME1=copyright
[25] =&gt; ID_CLIP_INFO_VALUE1=1/1/2001
[26] =&gt; ID_CLIP_INFO_N=2
[27] =&gt; ID_FILENAME=/home/funk999/public_html/video/3420.avi
[28] =&gt; ID_DEMUXER=lavf
[29] =&gt; ID_VIDEO_FORMAT=WMV1
[30] =&gt; ID_VIDEO_BITRATE=0
[31] =&gt; ID_VIDEO_WIDTH=320
[32] =&gt; ID_VIDEO_HEIGHT=240
[33] =&gt; ID_VIDEO_FPS=29.970
[34] =&gt; ID_VIDEO_ASPECT=0.0000
[35] =&gt; ID_AUDIO_FORMAT=353
[36] =&gt; ID_AUDIO_BITRATE=32000
[37] =&gt; ID_AUDIO_RATE=32000
[38] =&gt; ID_AUDIO_NCH=2
[39] =&gt; ID_LENGTH=12.71
[40] =&gt; ==========================================================================
[41] =&gt; Opening video decoder: [ffmpeg] FFmpeg's libavcodec codec family
[42] =&gt; Selected video codec: [ffwmv1] vfm: ffmpeg (FFmpeg M$ WMV1/WMV7)
[43] =&gt; ==========================================================================
[44] =&gt; ID_VIDEO_CODEC=ffwmv1
[45] =&gt; ==========================================================================
[46] =&gt; Opening audio decoder: [ffmpeg] FFmpeg/libavcodec audio decoders
[47] =&gt; AUDIO: 32000 Hz, 2 ch, s16le, 32.0 kbit/3.12% (ratio: 4000-&gt;128000)
[48] =&gt; ID_AUDIO_BITRATE=32000
[49] =&gt; ID_AUDIO_RATE=32000
[50] =&gt; ID_AUDIO_NCH=2
[51] =&gt; Selected audio codec: [ffwmav2] afm: ffmpeg (DivX audio v2 (FFmpeg))
[52] =&gt; ==========================================================================
[53] =&gt; AO: [null] 32000Hz 2ch s16le (2 bytes per sample)
[54] =&gt; ID_AUDIO_CODEC=ffwmav2
[55] =&gt; Starting playback...
[56] =&gt;
[57] =&gt;
[58] =&gt; Exiting... (End of file)
)
</PRE><STRONG>sql : UPDATE video SET duration='12.71' WHERE
VID=3420<BR></STRONG>job done
&lt;script type=text/javascript>
<!--
function shutDown() {
self.close();
}
function init() {
var timer = setInterval(shutDown, 1000);
}
onload = init;
//-->
</SCRIPT>



Thumbnail worked but not video

CODE
system
("<B>/usr/local/bin/mencoder /home/funk999/public_html//video/3420.avi -o
/home/funk999/public_html//flvideo/3420x.flv -of lavf -oac mp3lame -lameopts
abr:br=56 -ovc lavc -lavcopts
vcodec=flv:vbitrate=9600:mbd=2:mv0:trell:v4mv:cbp:last_pred=3 -lavfopts
i_certify_that_my_video_stream_does_not_use_b_frames -srate 22050</B>");<BR><PRE>MEncoder 1.0rc1-3.4.6 © 2000-2006 MPlayer Team
CPU: Intel® Xeon® CPU 3060 @ 2.40GHz (Family: 6, Model: 15, Stepping: 6)
CPUflags: Type: 6 MMX: 1 MMX2: 1 3DNow: 0 3DNow2: 0 SSE: 1 SSE2: 1
Compiled for x86 CPU with extensions: MMX MMX2 SSE SSE2

success: format: 0 data: 0x0 - 0x5a39d
ASF file format detected.
VIDEO: [WMV1] 320x240 24bpp 1000.000 fps 0.0 kbps ( 0.0 kbyte/s)
[V] filefmt:6 fourcc:0x31564D57 size:320x240 fps:1000.00 ftime:=0.0010
==========================================================================
Opening audio decoder: [ffmpeg] FFmpeg/libavcodec audio decoders
AUDIO: 32000 Hz, 2 ch, s16le, 32.0 kbit/3.12% (ratio: 4000-&gt;128000)
Selected audio codec: [ffwmav2] afm: ffmpeg (DivX audio v2 (FFmpeg))
==========================================================================
OK, exit
Opening video filter: [expand osd=1]
Expand: -1 x -1, -1 ; -1, osd: 1, aspect: 0.000000, round: 1
==========================================================================
Opening video decoder: [ffmpeg] FFmpeg's libavcodec codec family
Selected video codec: [ffwmv1] vfm: ffmpeg (FFmpeg M$ WMV1/WMV7)
==========================================================================

Exiting...
</PRE><BR>system(<B>/usr/local/bin/mplayer
/home/funk999/public_html/video/3420.avi -ss 23 -nosound -vo
jpeg:outdir=/home/funk999/public_html/tmp/3420 -frames 2</B>)<BR><PRE>MPlayer 1.0rc1-3.4.6 © 2000-2006 MPlayer Team
CPU: Intel® Xeon® CPU 3060 @ 2.40GHz (Family: 6, Model: 15, Stepping: 6)
CPUflags: MMX: 1 MMX2: 1 3DNow: 0 3DNow2: 0 SSE: 1 SSE2: 1
Compiled for x86 CPU with extensions: MMX MMX2 SSE SSE2
Terminal type `unknown' is not defined.

Playing /home/funk999/public_html/video/3420.avi.
ASF file format detected.
VIDEO: [WMV1] 320x240 24bpp 1000.000 fps 0.0 kbps ( 0.0 kbyte/s)
Clip info:
name:
author: Microsoft
copyright: 1/1/2001
comments:
jpeg: Parsing suboptions.
jpeg: Progressive JPEG disabled.
jpeg: Baseline JPEG enabled.
jpeg: Suboptions parsed OK.
==========================================================================
Opening video decoder: [ffmpeg] FFmpeg's libavcodec codec family
Selected video codec: [ffwmv1] vfm: ffmpeg (FFmpeg M$ WMV1/WMV7)
==========================================================================
Audio: no sound
Starting playback...
VDec: vo config request - 320 x 240 (preferred colorspace: Planar YV12)
Could not find matching colorspace - retrying with -vf scale...
Opening video filter: [scale]
VDec: using Planar YV12 as output csp (no 0)
Movie-Aspect is undefined - no prescaling applied.
VO: [jpeg] 320x240 =&gt; 320x240 RGB 24-bit
jpeg: /home/funk999/public_html/tmp/3420 - Output directory already exists and is writable.
V: 3.1 1/ 1 ??% ??% ??,?% 0 0
V: 0.0 1/ 1 ??% ??% ??,?% 0 0

Exiting... (End of file)
</PRE>system(<B>/usr/local/bin/mplayer /home/funk999/public_html/video/3420.avi
-ss 23 -nosound -vo jpeg:outdir=/home/funk999/public_html/tmp/3420 -frames
2</B>)<BR><PRE>MPlayer 1.0rc1-3.4.6 © 2000-2006 MPlayer Team
CPU: Intel® Xeon® CPU 3060 @ 2.40GHz (Family: 6, Model: 15, Stepping: 6)
CPUflags: MMX: 1 MMX2: 1 3DNow: 0 3DNow2: 0 SSE: 1 SSE2: 1
Compiled for x86 CPU with extensions: MMX MMX2 SSE SSE2
Terminal type `unknown' is not defined.

Playing /home/funk999/public_html/video/3420.avi.
ASF file format detected.
VIDEO: [WMV1] 320x240 24bpp 1000.000 fps 0.0 kbps ( 0.0 kbyte/s)
Clip info:
name:
author: Microsoft
copyright: 1/1/2001
comments:
jpeg: Parsing suboptions.
jpeg: Progressive JPEG disabled.
jpeg: Baseline JPEG enabled.
jpeg: Suboptions parsed OK.
==========================================================================
Opening video decoder: [ffmpeg] FFmpeg's libavcodec codec family
Selected video codec: [ffwmv1] vfm: ffmpeg (FFmpeg M$ WMV1/WMV7)
==========================================================================
Audio: no sound
Starting playback...
VDec: vo config request - 320 x 240 (preferred colorspace: Planar YV12)
Could not find matching colorspace - retrying with -vf scale...
Opening video filter: [scale]
VDec: using Planar YV12 as output csp (no 0)
Movie-Aspect is undefined - no prescaling applied.
VO: [jpeg] 320x240 =&gt; 320x240 RGB 24-bit
jpeg: /home/funk999/public_html/tmp/3420 - Output directory already exists and is writable.
V: 3.1 1/ 1 ??% ??% ??,?% 0 0
V: 0.0 1/ 1 ??% ??% ??,?% 0 0

Exiting... (End of file)
</PRE>system(<B>/usr/local/bin/mplayer /home/funk999/public_html/video/3420.avi
-ss 23 -nosound -vo jpeg:outdir=/home/funk999/public_html/tmp/3420 -frames
2</B>)<BR><PRE>MPlayer 1.0rc1-3.4.6 © 2000-2006 MPlayer Team
CPU: Intel® Xeon® CPU 3060 @ 2.40GHz (Family: 6, Model: 15, Stepping: 6)
CPUflags: MMX: 1 MMX2: 1 3DNow: 0 3DNow2: 0 SSE: 1 SSE2: 1
Compiled for x86 CPU with extensions: MMX MMX2 SSE SSE2
Terminal type `unknown' is not defined.

Playing /home/funk999/public_html/video/3420.avi.
ASF file format detected.
VIDEO: [WMV1] 320x240 24bpp 1000.000 fps 0.0 kbps ( 0.0 kbyte/s)
Clip info:
name:
author: Microsoft
copyright: 1/1/2001
comments:
jpeg: Parsing suboptions.
jpeg: Progressive JPEG disabled.
jpeg: Baseline JPEG enabled.
jpeg: Suboptions parsed OK.
==========================================================================
Opening video decoder: [ffmpeg] FFmpeg's libavcodec codec family
Selected video codec: [ffwmv1] vfm: ffmpeg (FFmpeg M$ WMV1/WMV7)
==========================================================================
Audio: no sound
Starting playback...
VDec: vo config request - 320 x 240 (preferred colorspace: Planar YV12)
Could not find matching colorspace - retrying with -vf scale...
Opening video filter: [scale]
VDec: using Planar YV12 as output csp (no 0)
Movie-Aspect is undefined - no prescaling applied.
VO: [jpeg] 320x240 =&gt; 320x240 RGB 24-bit
jpeg: /home/funk999/public_html/tmp/3420 - Output directory already exists and is writable.
V: 3.1 1/ 1 ??% ??% ??,?% 0 0
V: 0.0 1/ 1 ??% ??% ??,?% 0 0

Exiting... (End of file)
</PRE>system(<B>/usr/local/bin/mplayer /home/funk999/public_html/video/3420.avi
-ss 23 -nosound -vo jpeg:outdir=/home/funk999/public_html/tmp/3420 -frames
2</B>)<BR><PRE>MPlayer 1.0rc1-3.4.6 © 2000-2006 MPlayer Team
CPU: Intel® Xeon® CPU 3060 @ 2.40GHz (Family: 6, Model: 15, Stepping: 6)
CPUflags: MMX: 1 MMX2: 1 3DNow: 0 3DNow2: 0 SSE: 1 SSE2: 1
Compiled for x86 CPU with extensions: MMX MMX2 SSE SSE2
Terminal type `unknown' is not defined.

Playing /home/funk999/public_html/video/3420.avi.
ASF file format detected.
VIDEO: [WMV1] 320x240 24bpp 1000.000 fps 0.0 kbps ( 0.0 kbyte/s)
Clip info:
name:
author: Microsoft
copyright: 1/1/2001
comments:
jpeg: Parsing suboptions.
jpeg: Progressive JPEG disabled.
jpeg: Baseline JPEG enabled.
jpeg: Suboptions parsed OK.
==========================================================================
Opening video decoder: [ffmpeg] FFmpeg's libavcodec codec family
Selected video codec: [ffwmv1] vfm: ffmpeg (FFmpeg M$ WMV1/WMV7)
==========================================================================
Audio: no sound
Starting playback...
VDec: vo config request - 320 x 240 (preferred colorspace: Planar YV12)
Could not find matching colorspace - retrying with -vf scale...
Opening video filter: [scale]
VDec: using Planar YV12 as output csp (no 0)
Movie-Aspect is undefined - no prescaling applied.
VO: [jpeg] 320x240 =&gt; 320x240 RGB 24-bit
jpeg: /home/funk999/public_html/tmp/3420 - Output directory already exists and is writable.
V: 3.1 1/ 1 ??% ??% ??,?% 0 0
V: 0.0 1/ 1 ??% ??% ??,?% 0 0

Exiting... (End of file)
</PRE>system ("flvtool2 -Uv /home/funk999/public_html/flvideo/3420x.flv
/home/funk999/public_html/flvideo/3420.flv");<BR><PRE>ERROR: undefined method `timestamp' for nil:NilClass
ERROR: /usr/local/lib/ruby/site_ruby/1.8/flv/stream.rb:285:in `lasttimestamp'
ERROR: /usr/local/lib/ruby/site_ruby/1.8/flv/stream.rb:274:in `duration'
ERROR: /usr/local/lib/ruby/site_ruby/1.8/flvtool2/base.rb:181:in `add_meta_data_tag'
ERROR: /usr/local/lib/ruby/site_ruby/1.8/flvtool2/base.rb:137:in `update'
ERROR: /usr/local/lib/ruby/site_ruby/1.8/flvtool2/base.rb:47:in `send'
ERROR: /usr/local/lib/ruby/site_ruby/1.8/flvtool2/base.rb:47:in `execute!'
ERROR: /usr/local/lib/ruby/site_ruby/1.8/flvtool2/base.rb:46:in `each'
ERROR: /usr/local/lib/ruby/site_ruby/1.8/flvtool2/base.rb:46:in `execute!'
ERROR: /usr/local/lib/ruby/site_ruby/1.8/flvtool2/base.rb:239:in `process_files'
ERROR: /usr/local/lib/ruby/site_ruby/1.8/flvtool2/base.rb:225:in `each'
ERROR: /usr/local/lib/ruby/site_ruby/1.8/flvtool2/base.rb:225:in `process_files'
ERROR: /usr/local/lib/ruby/site_ruby/1.8/flvtool2/base.rb:44:in `execute!'
ERROR: /usr/local/lib/ruby/site_ruby/1.8/flvtool2.rb:168:in `execute!'
ERROR: /usr/local/lib/ruby/site_ruby/1.8/flvtool2.rb:228
ERROR: /usr/local/bin/flvtool2:2:in `require'
ERROR: /usr/local/bin/flvtool2:2
Skipping file /home/funk999/public_html/flvideo/3420x.flv
</PRE><BR>
<HR>
exec (/usr/local/bin/mplayer -vo null -ao null -frames 0 -identify
/home/funk999/public_html/video/3420.avi)<BR><PRE>Array
(
[0] =&gt; MPlayer 1.0rc1-3.4.6 © 2000-2006 MPlayer Team
[1] =&gt; CPU: Intel® Xeon® CPU 3060 @ 2.40GHz (Family: 6, Model: 15, Stepping: 6)
[2] =&gt; CPUflags: MMX: 1 MMX2: 1 3DNow: 0 3DNow2: 0 SSE: 1 SSE2: 1
[3] =&gt; Compiled for x86 CPU with extensions: MMX MMX2 SSE SSE2
[4] =&gt; Terminal type `unknown' is not defined.
[5] =&gt;
[6] =&gt; Playing /home/funk999/public_html/video/3420.avi.
[7] =&gt; ASF file format detected.
[8] =&gt; ID_AUDIO_ID=1
[9] =&gt; ID_VIDEO_ID=2
[10] =&gt; VIDEO: [WMV1] 320x240 24bpp 1000.000 fps 0.0 kbps ( 0.0 kbyte/s)
[11] =&gt; Clip info:
[12] =&gt; name:
[13] =&gt; ID_CLIP_INFO_NAME0=name
[14] =&gt; ID_CLIP_INFO_VALUE0=
[15] =&gt; author: Microsoft
[16] =&gt; ID_CLIP_INFO_NAME1=author
[17] =&gt; ID_CLIP_INFO_VALUE1=Microsoft
[18] =&gt; copyright: 1/1/2001
[19] =&gt; ID_CLIP_INFO_NAME2=copyright
[20] =&gt; ID_CLIP_INFO_VALUE2=1/1/2001
[21] =&gt; comments:
[22] =&gt; ID_CLIP_INFO_NAME3=comments
[23] =&gt; ID_CLIP_INFO_VALUE3=
[24] =&gt; ID_CLIP_INFO_N=4
[25] =&gt; ID_FILENAME=/home/funk999/public_html/video/3420.avi
[26] =&gt; ID_DEMUXER=asf
[27] =&gt; ID_VIDEO_FORMAT=WMV1
[28] =&gt; ID_VIDEO_BITRATE=0
[29] =&gt; ID_VIDEO_WIDTH=320
[30] =&gt; ID_VIDEO_HEIGHT=240
[31] =&gt; ID_VIDEO_FPS=1000.000
[32] =&gt; ID_VIDEO_ASPECT=0.0000
[33] =&gt; ID_AUDIO_FORMAT=353
[34] =&gt; ID_AUDIO_BITRATE=0
[35] =&gt; ID_AUDIO_RATE=0
[36] =&gt; ID_AUDIO_NCH=0
[37] =&gt; ID_LENGTH=13.00
[38] =&gt; ==========================================================================
[39] =&gt; Opening video decoder: [ffmpeg] FFmpeg's libavcodec codec family
[40] =&gt; Selected video codec: [ffwmv1] vfm: ffmpeg (FFmpeg M$ WMV1/WMV7)
[41] =&gt; ==========================================================================
[42] =&gt; ID_VIDEO_CODEC=ffwmv1
[43] =&gt; ==========================================================================
[44] =&gt; Opening audio decoder: [ffmpeg] FFmpeg/libavcodec audio decoders
[45] =&gt; AUDIO: 32000 Hz, 2 ch, s16le, 32.0 kbit/3.12% (ratio: 4000-&gt;128000)
[46] =&gt; ID_AUDIO_BITRATE=32000
[47] =&gt; ID_AUDIO_RATE=32000
[48] =&gt; ID_AUDIO_NCH=2
[49] =&gt; Selected audio codec: [ffwmav2] afm: ffmpeg (DivX audio v2 (FFmpeg))
[50] =&gt; ==========================================================================
[51] =&gt; AO: [null] 32000Hz 2ch s16le (2 bytes per sample)
[52] =&gt; ID_AUDIO_CODEC=ffwmav2
[53] =&gt; Starting playback...
[54] =&gt;
[55] =&gt;
[56] =&gt; Exiting... (End of file)
)
</PRE><STRONG>sql : UPDATE video SET duration='13.00' WHERE
VID=3420<BR></STRONG>job done
&lt;script type=text/javascript>
<!--
function shutDown() {
self.close();
}
function init() {
var timer = setInterval(shutDown, 1000);
}
onload = init;
//-->
</SCRIPT>
alsmith
Trying this install and running into issues.
these fail

up2date -i subversion

svn checkout svn://svn.mplayerhq.hu/ffmpeg/trunk ffmpeg

svn checkout svn://svn.mplayerhq.hu/mplayer/trunk mplayer

svn update.

Looks like because I cannot get the up2date -i subversion to install.
How to correct this?
esemerda
thanks for the fantastic info TSS-grunt.

3rd last step in the url looks like: no-debug-non-zts-20020429
is no longer a valid sub directory.
use: no-debug-non-zts-20050922
captain_ahab
hi,

i see this topic has been dead for a while, but still maybe someone still read it and might help me.

i'm a complete newbie to all this video sharing world, and my question is how do i make some automated process that can decide wether to use ffmpeg or mencoder, as there are certain codecs which is not supported by one, but supported by the other for conversions.

any ideas?

thank you all.
Imtiaz
QUOTE (captain_ahab @ Aug 8 2007, 02:50 PM) *
hi,

i see this topic has been dead for a while, but still maybe someone still read it and might help me.

i'm a complete newbie to all this video sharing world, and my question is how do i make some automated process that can decide wether to use ffmpeg or mencoder, as there are certain codecs which is not supported by one, but supported by the other for conversions.

any ideas?

thank you all.



Hi,
What I do is check the output from the mencoder conversion sequence, if the file size is zero then unlink the file and try with ffmpeg. Please have a look at the demo at http://www.netbrix.net/video this uses both mencoder and ffmpeg so if one fails the oteher picks up.

-Imtiaz
http://netbrix.net/archives/39
Shazam
Brilliant.
It actually works...
And it took thinking out of the equation
icon_mrgreen.gif
www.bglaf.org
Hallo,

I have a this problem

[root@bglaf.org test_media]# flvtool2 -Uv test.avi test.flv
ERROR: IO is not a FLV stream. Wrong signature.
ERROR: /usr/lib/ruby/site_ruby/1.8/flv/stream.rb:393:in `read_header'
ERROR: /usr/lib/ruby/site_ruby/1.8/flv/stream.rb:57:in `initialize'
ERROR: /usr/lib/ruby/site_ruby/1.8/flvtool2/base.rb:272:in `new'
ERROR: /usr/lib/ruby/site_ruby/1.8/flvtool2/base.rb:272:in `open_stream'
ERROR: /usr/lib/ruby/site_ruby/1.8/flvtool2/base.rb:238:in `process_files'
ERROR: /usr/lib/ruby/site_ruby/1.8/flvtool2/base.rb:225:in `each'
ERROR: /usr/lib/ruby/site_ruby/1.8/flvtool2/base.rb:225:in `process_files'
ERROR: /usr/lib/ruby/site_ruby/1.8/flvtool2/base.rb:44:in `execute!'
ERROR: /usr/lib/ruby/site_ruby/1.8/flvtool2.rb:168:in `execute!'
ERROR: /usr/lib/ruby/site_ruby/1.8/flvtool2.rb:228
ERROR: /usr/bin/flvtool2:2:in `require'
ERROR: /usr/bin/flvtool2:2
Skipping file /var/www/html/test_media/test.avi
Ale
Hi

I have a this problem

QUOTE
FFMPEG:

cd /usr/local/src/ffmpeg/

./configure --enable-libmp3lame --enable-libogg --enable-libvorbis --disable-mmx --enable-shared


Detected operating system: Linux
Detected host architecture: i386
Checking for cc version ... 3.2.3, ok
Checking for host cc ... cc
Checking for cross compilation ... no
Checking for CPU vendor ... GenuineIntel (15:2:7)
Checking for CPU type ... Intel® Pentium® 4 CPU 2.40GHz
Checking for GCC & CPU optimization abilities ... pentium4
Checking for kernel support of mmx ... yes
Checking for kernel support of mmxext ... yes
Checking for kernel support of sse ... yes
Checking for kernel support of sse2 ... yes
Checking for mtrr support ... yes
Checking for assembler support of -pipe option ... yes
Checking for compiler support of named assembler arguments ... yes
Unknown parameter: --enable-libmp3lame
stillo
Thanks for the instructions.
stillo
I got another problem in here:

CODE
checking for Ogg... no
*** Could not run Ogg test program, checking why...
*** The test program compiled, but did not run. This usually means
*** that the run-time linker is not finding Ogg or finding the wrong
*** version of Ogg. If it is not finding Ogg, you'll need to set your
*** LD_LIBRARY_PATH environment variable, or edit /etc/ld.so.conf to point
*** to the installed location  Also, make sure you have run ldconfig if that
*** is required on your system
***
*** If you have an old version installed, it is best to remove it, although
*** you may also be able to get things to work by modifying LD_LIBRARY_PATH
configure: error: must have Ogg installed!
I tried this command:

PKG_CONFIG_PATH=/usr/local/lib/pkgconfig
then
export PKG_CONFIG_PATH



But it did not help. What I should do?
LukeArts
Thanks TSS-grunt,

All works great here on my CentOS box
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.
Invision Power Board © 2001-2009 Invision Power Services, Inc.