gst-libav-1.24.11

Introduction to GStreamer Libav

The GStreamer Libav package contains GStreamer plugins for Libav (a fork of FFmpeg).

Package Information

GStreamer Libav Dependencies

Required

FFmpeg-7.1, gst-plugins-base-1.24.11, and Meson Toolchain Files (for lib32)

Recommended

Optional

hotdoc

Installation of GStreamer Libav

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

lib32 Installation of GStreamer Libav

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

Command Explanations

--buildtype=release: Specify a buildtype suitable for stable releases of the package, as the default may produce unoptimized binaries.

Contents

Installed Programs: None
Installed Library: libgstlibav.so in /usr/lib/gstreamer-1.0
Installed Directory: None