libsndfile-1.0.28

Introduction to libsndfile

Libsndfile is a library of C routines for reading and writing files containing sampled audio data.

This package is known to build and work properly using an LFS-9.1 platform.

Package Information

libsndfile Dependencies

Recommended

Optional

alsa-lib-1.2.1.2 and SQLite-3.31.1

User Notes: http://wiki.linuxfromscratch.org/blfs/wiki/libsndfile

Installation of libsndfile

Install libsndfile by running the following commands:

./configure --prefix=/usr    \
            --disable-static \
            --docdir=/usr/share/doc/libsndfile-1.0.28 &&
make

To test the results, issue: make check.

Now, as the root user:

make install

Command Explanations

--disable-static: This switch prevents installation of static versions of the libraries.

Contents

Installed Programs: sndfile-cmp, sndfile-concat, sndfile-convert, sndfile-deinterleave, sndfile-info, sndfile-interleave, sndfile-metadata-get, sndfile-metadata-set, sndfile-play, sndfile-regtest and sndfile-salvage
Installed Library: libsndfile.so
Installed Directory: /usr/share/doc/libsndfile-1.0.28

Short Descriptions

sndfile-cmp

compares two audio files.

sndfile-concat

concatenates two or more audio files.

sndfile-convert

converts a sound files from one format to another.

sndfile-deinterleave

splits a multi-channel into multiple single channel files.

sndfile-info

displays information about a sound file.

sndfile-interleave

converts multiple single channel files into a multi-channel file.

sndfile-metadata-get

retrieves metadata from a sound file.

sndfile-metadata-set

sets metadata in a sound file.

sndfile-play

plays a sound file.

libsndfile.so

contains the libsndfile API functions.

Last updated on 2020-02-17 18:27:03 -0800