• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

docs/H03-May-2022-2,8872,283

examples/H03-May-2022-1,9251,311

gtest/H03-May-2022-29,20418,704

libaudiofile/H03-May-2022-30,14721,093

sfcommands/H03-May-2022-1,3201,006

test/H03-May-2022-7,5065,161

ACKNOWLEDGEMENTSH A D07-Mar-2013631 2623

AUTHORSH A D11-Feb-2013106 63

COPYINGH A D06-Mar-201325.9 KiB503418

COPYING.GPLH A D06-Mar-201317.7 KiB340281

ChangeLogH A D07-Mar-201358.4 KiB1,9541,306

INSTALLH A D11-Feb-20137.6 KiB183143

Makefile.amH A D11-Feb-20131.4 KiB5946

Makefile.inH A D03-May-202228.5 KiB898796

NEWSH A D07-Mar-20131.9 KiB5440

NOTESH A D07-Mar-20131.3 KiB4231

READMEH A D07-Mar-20132.1 KiB6552

TODOH A D07-Mar-2013882 3322

aclocal.m4H A D07-Mar-2013341.7 KiB9,7388,759

audiofile-uninstalled.pc.inH A D11-Feb-2013194 76

audiofile.pc.inH A D11-Feb-2013223 1311

audiofile.specH A D07-Mar-20131.6 KiB7052

audiofile.spec.inH A D11-Feb-20131.6 KiB7055

config.guessH A D26-Jun-201243.8 KiB1,5311,321

config.h.inH A D07-Mar-20132.6 KiB10473

config.subH A D26-Jun-201234.7 KiB1,7831,640

configureH A D07-Mar-2013572 KiB19,20016,178

configure.acH A D07-Mar-20134.1 KiB171144

depcompH A D19-Sep-201220.4 KiB709460

install-shH A D19-Sep-201213.7 KiB528351

ltmain.shH A D12-Feb-2013277 KiB9,6627,310

missingH A D19-Sep-201210.1 KiB332243

README

1Audio File Library
2Version 0.3.6
3Wednesday, 6 March 2013
4
5Copyright (C) 1998-2000, 2003-2004, 2010-2013 Michael Pruett
6Copyright (C) 2000-2001 Silicon Graphics, Inc.
7
8michael@68k.org
9http://audiofile.68k.org/
10
11----
12
13The Audio File Library handles reading and writing audio files in many
14common formats.
15
16Key goals of the Audio File Library are file format transparency and data
17format transparency. The same calls for opening a file, accessing and
18manipulating audio metadata (e.g. sample rate, sample format, textual
19information, MIDI parameters), and reading and writing sample data will
20work with any supported audio file format. Likewise, the format of the
21audio data presented to the application need not be tied to the format
22of the data contained in the file.
23
24The following file formats are currently supported:
25* AIFF/AIFF-C
26* WAVE
27* NeXT .snd/Sun .au
28* Berkeley/IRCAM/CARL Sound File
29* Audio Visual Research
30* Amiga IFF/8SVX
31* Sample Vision
32* Creative Voice File
33* NIST SPHERE
34* Core Audio Format
35* FLAC
36
37The following compression formats are currently supported:
38* G.711 mu-law and A-law
39* IMA ADPCM
40* Microsoft ADPCM
41* FLAC
42* Apple Lossless Audio Codec
43
44The Audio File Library itself is available under the GNU Lesser General
45Public License, and the programs in this package are available under the
46GNU General Public License. The two licenses are included in the files
47COPYING and COPYING.GPL, respectively.
48
49----
50
51This library is free software; you can redistribute it and/or
52modify it under the terms of the GNU Lesser General Public
53License as published by the Free Software Foundation; either
54version 2.1 of the License, or (at your option) any later version.
55
56This library is distributed in the hope that it will be useful,
57but WITHOUT ANY WARRANTY; without even the implied warranty of
58MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
59Lesser General Public License for more details.
60
61You should have received a copy of the GNU Lesser General Public
62License along with this library; if not, write to the
63Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
64Boston, MA  02110-1301  USA
65