Difference between revisions of "Audio File"

From CBLFS
Jump to navigationJump to search
(I updated the package description.)
Line 1: Line 1:
 
{| style="text-align: left; background-color: AliceBlue;"
 
{| style="text-align: left; background-color: AliceBlue;"
|-
+
|-valign="top"
 
!Download Source:
 
!Download Source:
 
| http://www.68k.org/~michael/audiofile/audiofile-{{Audio File-Version}}.tar.gz
 
| http://www.68k.org/~michael/audiofile/audiofile-{{Audio File-Version}}.tar.gz
Line 9: Line 9:
 
== Introduction to Audio File ==
 
== Introduction to Audio File ==
  
The Audio File package contains the audio file libraries and two sound file support programs. These are useful to support basic sound file formats.
+
The Audio File Library provides a uniform and elegant API for accessing a variety of audio file formats, such as AIFF/AIFF-C, WAVE, NeXT/Sun .snd/.au, Berkeley/IRCAM/CARL Sound File, Audio Visual Research, Amiga IFF/8SVX, and NIST SPHERE. Supported compression formats are currently G.711 mu-law and A-law and IMA and MS ADPCM.
 +
 
 +
Key goals of the Audio File Library are file format transparency and data format transparency. The same calls for opening a file, accessing and manipulating audio metadata (e.g. sample rate, sample format, textual information, MIDI parameters), and reading/writing sample data will work with any supported audio file format. Likewise, the format of the audio data presented to the application need not be tied to the format of the data contained in the file.
 +
 
 +
'''Project Home Page''': http://www.68k.org/~michael/audiofile/
  
 
== Dependencies ==
 
== Dependencies ==

Revision as of 10:03, 1 February 2007

Download Source: http://www.68k.org/~michael/audiofile/audiofile-0.3.6.tar.gz

Introduction to Audio File

The Audio File Library provides a uniform and elegant API for accessing a variety of audio file formats, such as AIFF/AIFF-C, WAVE, NeXT/Sun .snd/.au, Berkeley/IRCAM/CARL Sound File, Audio Visual Research, Amiga IFF/8SVX, and NIST SPHERE. Supported compression formats are currently G.711 mu-law and A-law and IMA and MS ADPCM.

Key goals of the Audio File Library are file format transparency and data format transparency. The same calls for opening a file, accessing and manipulating audio metadata (e.g. sample rate, sample format, textual information, MIDI parameters), and reading/writing sample data will work with any supported audio file format. Likewise, the format of the audio data presented to the application need not be tied to the format of the data contained in the file.

Project Home Page: http://www.68k.org/~michael/audiofile/

Dependencies

Non-Multilib

Compile the package:

./configure --prefix=/usr &&
make

Install the package

make install

Multilib

32Bit

Compile the package:

CC="gcc ${BUILD32}" ./configure --prefix=/usr &&
make

Install the package

make install &&
mv -v /usr/bin/audiofile-config{,-32}

N32

Compile the package:

CC="gcc ${BUILDN32}" ./configure --prefix=/usr --libdir=/usr/lib32 &&
make

Install the package

make install &&
mv -v /usr/bin/audiofile-config{,-n32}

64Bit

Compile the package:

CC="gcc ${BUILD64}" ./configure --prefix=/usr --libdir=/usr/lib64 &&
make

Install the package

make install &&
mv -v /usr/bin/audiofile-config{,-64} &&
ln -sfv multiarch_wrapper /usr/bin/audiofile-config

Contents

  • Installed Programs: sfconvert, sfinfo, audiofile-config
  • Installed Libraries: libaudiofile.{so,la,a}