fame - Set of tools for encoding multimedia content ChangeLog

HOWTO


# FAME (Fast Assembly Mpeg Encoder)
# ====
# The FAME projects consists of libfame, fame, and recmpeg.  All three are
# covered here.

# Create a directory for the source and tarballs
mkdir -p -m 0700 ~/installed/fame ~/src/fame


# libfame 0.9.1
# =============
cd
test -f installed/fame/libfame-0.9.1.tar.gz &&
mv installed/fame/libfame-0.9.1.tar.gz .
test ! -f libfame-0.9.1.tar.gz &&
wget http://easynews.dl.sourceforge.net/sourceforge/fame/\
libfame-0.9.1.tar.gz
cd src/fame
find -maxdepth 1 -type d -name "libfame-*" -exec rm -r {} \;
tar xzvf ~/libfame-0.9.1.tar.gz
cd libfame-0.9.1
test $UID = 0 && chown -R root:root .

# Apply this patch if you use gcc 3.4.x  Without the patch, libfame will
# build and install OK, but when you try to build apps that use it, they
# will fail to build with an error like "undefined symbol: _mmx_one".
wget -nc http://englanders.cc/pub/linux/patches/notmine/\
libfame-0.9.1-gcc34-1.patch &&
patch -p1 < libfame-0.9.1-gcc34-1.patch

# Quiet the (harmless) error about 'missing' being too old or missing:
touch NEWS ChangeLog
autoreconf -f -i

# If you want to semi-fix the two 'test' errors that will show when
# configure is run:
cat configure | sed 's/$CC --version |/$CC --version | head -1 |/' \
> configure.new
test -s configure.new &&
( mv -f configure configure.old
   mv -f configure.new configure
   chmod +x configure )

./configure
make
su -c "make install ; ldconfig"
cd
rm -f installed/fame/libfame-*.tar.*
mv libfame-0.9.1.tar.gz installed/fame/

# If you ever want to uninstall libfame, cd into the source directory
# and run 'su -c "make uninstall"'


# fame 0.9.0
# ==========
# Prerequisites (other than libfame):
# libfame >= 0.9.0
# lame (for sound)

cd
test -f installed/fame/fame-0.9.0.tar.gz &&
mv installed/fame/fame-0.9.0.tar.gz .
test ! -f fame-0.9.0.tar.gz &&
wget http://easynews.dl.sourceforge.net/sourceforge/fame/fame-0.9.0.tar.gz
cd src/fame
find -maxdepth 1 -type d -name "fame-*" -exec rm -r {} \;
tar xzvf ~/fame-0.9.0.tar.gz
cd fame-0.9.0
test $UID = 0 && chown -R root:root .
./configure
make
su -c "make install"
cd
rm -f installed/fame/fame-*.tar.*
mv fame-0.9.0.tar.gz installed/fame/

# If you ever want to uninstall fame, cd into the source directory
# and run 'su -c "make uninstall"'


# recmpeg 1.0.5
# =============
# libfame >= 0.8.10

cd
test -f installed/fame/recmpeg-1.0.5.tar.gz &&
mv installed/fame/recmpeg-1.0.5.tar.gz .
test ! -f recmpeg-1.0.5.tar.gz &&
wget http://easynews.dl.sourceforge.net/sourceforge/fame/\
recmpeg-1.0.5.tar.gz
cd src/fame
find -maxdepth 1 -type d -name "recmpeg-*" -exec rm -r {} \;
tar xzvf ~/recmpeg-1.0.5.tar.gz
cd recmpeg-1.0.5
test $UID = 0 && chown -R root:root .
./configure
make
su -c "make install"
cd
rm -f installed/fame/recmpeg-*.tar.*
mv recmpeg-1.0.5.tar.gz installed/fame/

List of HOWTOs

Web page itself last updated: 2023-12-20 8:06pm (EDT -0400)
HOWTO last updated: 2005-12-12 3:17pm
Copyright © 2001-2024 Jason Englander. All Rights reserved.
[HTML5]