The GStreamer Libav package contains GStreamer plugins for Libav (a fork of FFmpeg).
FFmpeg-7.1, gst-plugins-base-1.24.11, and Meson Toolchain Files (for lib32)
Install GStreamer Libav by running the following commands:
mkdir build && cd build && meson setup .. \ --prefix=/usr \ --buildtype=release && ninja
To run the tests, issue: ninja test.
Now, as the root
user:
ninja install
First clean the build directory:
rm -rf *
Install lib32-GStreamer Libav by running the following commands:
meson setup .. \ --cross-file lib32 \ --prefix=/usr \ --libdir=/usr/lib32 \ --buildtype=release && ninja
To run the tests, issue: ninja test.
Now, as the root
user:
DESTDIR=$PWD/DESTDIR ninja install && cp -vR DESTDIR/usr/lib32/* /usr/lib32 && rm -rf DESTDIR && ldconfig
--buildtype=release
:
Specify a buildtype suitable for stable releases of the package, as
the default may produce unoptimized binaries.