x264 package provides a library for encoding video streams into the H.264/MPEG-4 AVC format.
Download (HTTP): https://anduin.linuxfromscratch.org/BLFS/x264/x264-20240812.tar.xz
Install x264 by running the following commands:
./configure --prefix=/usr \ --enable-shared \ --disable-cli && make
This package does not come with a test suite.
Now, as the root
user:
make install
First clean the directory:
make distclean
Install lib32-x264 by running the following commands:
CC="gcc -m32" CXX="g++ -m32" \ PKG_CONFIG_PATH=/usr/lib32/pkgconfig \ ./configure --prefix=/usr \ --libdir=/usr/lib32 \ --host=i686-pc-linux-gnu \ --enable-shared \ --disable-cli && make
This package does not come with a test suite.
Now, as the root
user:
make DESTDIR=$PWD/DESTDIR install && cp -vr DESTDIR/usr/lib32/* /usr/lib32 && rm -rf DESTDIR && ldconfig
--disable-cli
: This switch
disables building the command-line encoder which is redundant since
it requires FFmpeg for most of the input formats.
--disable-asm
: Use this switch if you
didn't install NASM.