stupid_idiot
Group: Members
Posts: 344
Joined: Oct. 2006 |
|
Posted: Nov. 16 2007,19:03 |
|
Almost ready: ffmpeg.uci [2.1M] -- latest SVN; mencoder.uci [724K] -- latest SVN; mplayer.uci [852K] -- latest SVN ** 'mencoder.uci' and 'mplayer.uci' both need 'ffmpeg.uci' to run. Both are linked against ffmpeg shared libraries in '/opt/ffmpeg/lib/'. I used '-Wl,-rpath,/opt/ffmpeg/lib' for linking.
- New location for the 'codecs' directory. It used to be '/usr/local/lib/codecs/'. Now I changed it to '/opt/codecs/'. Other codec extensions like 'codecs-wmp.uci' can put symlinks in this directory pointing to files in '/opt/codecs-wmp/' for example.
- Included encoders (only for ffmpeg & mencoder): libfaac, libmp3lame, libtheora, libtwolame, libx264 - Included decoders: liba52, libamrnb, libamrwb, libfaad, libspeex, libtheora
- Also included: Manuals formatted as plain text files. Namely: '/opt/ffmpeg/ffmpeg.txt'; '/opt/mencoder/mencoder.txt'; '/opt/mplayer/mplayer.txt'. To format a manpage into a text file:Code Sample | man ./foo | col -b > foo.txt | To format a texinfo manual into a text file:Code Sample | texi2html foo.texi | followed byCode Sample | html2text -style pretty -nobs -ascii -o foo.txt foo.html |
Contents of '/opt/ffmpeg/' for 'ffmpeg.uci':Code Sample | bin/ffmpeg ffmpeg.txt lib/liba52.so.0 lib/libamrnb.so.3 lib/libamrwb.so.3 lib/libavcodec.so.51 lib/libavformat.so.51 lib/libavutil.so.49 lib/libfaac.so.0 lib/libfaad.so.0 lib/libmp3lame.so.0 lib/libswscale.so.0 lib/libtheora.so.0 lib/libx264.so.56 user.tar.gz 'user.tar.gz' contains: '/opt/bin/ffmpeg' -> '../ffmpeg/bin/ffmpeg' | Contents of '/opt/mencoder/' for 'mencoder.uci':Code Sample | bin/mencoder mencoder.txt user.tar.gz 'user.tar.gz' contains: '/opt/bin/mencoder' -> '../mencoder/bin/mencoder' | Contents of '/opt/mplayer/' for 'mplayer.uci':Code Sample | bin/mplayer etc/mplayer.conf mplayer.txt user.tar.gz 'user.tar.gz' contains: '/opt/bin/mplayer' -> '../mplayer/bin/mplayer' |
|