Difference between revisions of "Transcode"
From CBLFS
Jump to navigationJump to searchLine 1: | Line 1: | ||
− | |||
{| style="text-align: left; background-color: AliceBlue;" | {| style="text-align: left; background-color: AliceBlue;" | ||
|- | |- | ||
Line 9: | Line 8: | ||
== Dependencies == | == Dependencies == | ||
− | Required | + | === Required === |
− | *[[FFmpeg]] | + | * [[FFmpeg]] |
− | *[[libmpeg2]] | + | * [[libmpeg2]] |
− | Recommended | + | === Recommended === |
− | *[[LAME]] | + | * [[LAME]] |
− | Optional (Listed in the Order That the configure Script Looks for Them) | + | === Optional (Listed in the Order That the configure Script Looks for Them) === |
− | * [[ | + | * [[Pkg-config]] |
* [[X Window System]] | * [[X Window System]] | ||
* [[XviD]] | * [[XviD]] | ||
Line 36: | Line 35: | ||
* [[liba52]] | * [[liba52]] | ||
* [[LibMPEG3]] | * [[LibMPEG3]] | ||
− | * [[ | + | * [[LibXML2]] |
* [[MJPEG Tools]] | * [[MJPEG Tools]] | ||
* [[SDL]] | * [[SDL]] | ||
− | * [[ | + | * [[Gtk1]] |
* [[libFAME]] | * [[libFAME]] | ||
* [[ImageMagick]] | * [[ImageMagick]] | ||
* [[libjpeg]] | * [[libjpeg]] | ||
+ | |||
+ | == Configuration Information == | ||
+ | |||
+ | There are numerous configuration options listed below that you may want to use: | ||
+ | |||
+ | --enable-v4l \ | ||
+ | --enable-avifile\ | ||
+ | --enable-ogg \ | ||
+ | --enable-vorbis\ | ||
+ | --enable-theora \ | ||
+ | --enable-libdv \ | ||
+ | --enable-libquicktime \ | ||
+ | --enable-liblzo \ | ||
+ | --enable-a52{,-default-decoder} \ | ||
+ | --enable-libmpeg3 \ | ||
+ | --enable-libxml2 \ | ||
+ | --enable-mjpegtools \ | ||
+ | --enable-sdl \ | ||
+ | --enable-gtk \ | ||
+ | --enable-libfame \ | ||
+ | --enable-imagemagick | ||
== Non-Multilib == | == Non-Multilib == | ||
Line 59: | Line 79: | ||
=== 32Bit === | === 32Bit === | ||
+ | Configure and compile the package: | ||
+ | CC="gcc ${BUILD32}" USE_ARCH=32 \ | ||
+ | PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" \ | ||
+ | ./configure --prefix=/usr && | ||
+ | make | ||
+ | |||
+ | Install the package: | ||
+ | |||
+ | make install | ||
=== N32 === | === N32 === | ||
+ | Configure and compile the package: | ||
+ | |||
+ | CC="gcc ${BUILDN32}" USE_ARCH=n32 \ | ||
+ | PKG_CONFIG_PATH="${PKG_CONFIG_PATHN32}" \ | ||
+ | ./configure --prefix=/usr \ | ||
+ | --libdir=/usr/lib32 && | ||
+ | make | ||
+ | |||
+ | Install the package: | ||
+ | make install | ||
=== 64Bit === | === 64Bit === | ||
+ | Configure and compile the package: | ||
+ | CC="gcc ${BUILD64}" USE_ARCH=64 \ | ||
+ | PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" \ | ||
+ | ./configure --prefix=/usr \ | ||
+ | --libdir=/usr/lib64 && | ||
+ | make | ||
− | + | Install the package: | |
+ | |||
+ | make install |
Revision as of 12:48, 2 November 2006
Download Source: | http://www.kraymer.mynetcologne.de/transcode-1.0.2.tar.gz |
---|
Contents
Dependencies
Required
Recommended
Optional (Listed in the Order That the configure Script Looks for Them)
- Pkg-config
- X Window System
- XviD
- DivX4Linux
- LoRS/IBP
- MPlayer
- FreeType
- Avifile
- libogg
- libvorbis
- Theora
- libdvdread
- PVM3
- libdv
- libquicktime
- LZO
- liba52
- LibMPEG3
- LibXML2
- MJPEG Tools
- SDL
- Gtk1
- libFAME
- ImageMagick
- libjpeg
Configuration Information
There are numerous configuration options listed below that you may want to use:
--enable-v4l \ --enable-avifile\ --enable-ogg \ --enable-vorbis\ --enable-theora \ --enable-libdv \ --enable-libquicktime \ --enable-liblzo \ --enable-a52{,-default-decoder} \ --enable-libmpeg3 \ --enable-libxml2 \ --enable-mjpegtools \ --enable-sdl \ --enable-gtk \ --enable-libfame \ --enable-imagemagick
Non-Multilib
Configure and compile the package:
./configure --prefix=/usr && make
Install the package:
make install
Multilib
32Bit
Configure and compile the package:
CC="gcc ${BUILD32}" USE_ARCH=32 \ PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" \ ./configure --prefix=/usr && make
Install the package:
make install
N32
Configure and compile the package:
CC="gcc ${BUILDN32}" USE_ARCH=n32 \ PKG_CONFIG_PATH="${PKG_CONFIG_PATHN32}" \ ./configure --prefix=/usr \ --libdir=/usr/lib32 && make
Install the package:
make install
64Bit
Configure and compile the package:
CC="gcc ${BUILD64}" USE_ARCH=64 \ PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" \ ./configure --prefix=/usr \ --libdir=/usr/lib64 && make
Install the package:
make install