Free audio codec. https://xiph.org/vorbis/

Monty 3b114f6cd8 23 年之前
debian 1265bef47a Updated timestamps for debian changelog entries and added some more information to vorbiscomment manpage. 23 年之前
doc 607339d4ae Start clearing out my TODO list... 23 年之前
examples a4af87cd99 23 年之前
include 26c664f744 23 年之前
lib a4af87cd99 23 年之前
mac 9ed6074a9f 24 年之前
macosx 773b89726a Correct relative path to the ogg framework, required for linking. 23 年之前
vq a4af87cd99 23 年之前
win32 ff4305695c vorbis_synthesis_trackonly added to win32 exports. 23 年之前
.cvsignore 1480ea8a3a updated cvsignore 24 年之前
AUTHORS a30bcf0d61 versioning and doc updates 24 年之前
COPYING 7bfceda631 24 年之前
HACKING 8ebbbc5a88 Note to self: run ispell *before* committing to CVS! 24 年之前
Makefile.am fb92b325f6 Remove the unmaintained and obsolete CodeWarrior files for MacOS 9 from the distribution target; 23 年之前
README 971f75656a more speling mistakes 24 年之前
acinclude.m4 829918dda5 Quick fixes: Silly bug in shell test and missing quotes in error message 23 年之前
autogen.sh 829918dda5 Quick fixes: Silly bug in shell test and missing quotes in error message 23 年之前
configure.in 0facd66540 23 年之前
libvorbis.spec b41a88c2cd Spec file updates based on advice from Thomas Vander Stichele <thomas@apestaart.org> 23 年之前
todo.txt a8ef3e3319 25 年之前
vorbis.m4 7e69e10e27 Updated vorbis.m4 which checks for rc3+ functions, from thomasvs. 23 年之前

README

********************************************************************
* *
* THIS FILE IS PART OF THE OggVorbis SOFTWARE CODEC SOURCE CODE. *
* USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS *
* GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE *
* IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING. *
* *
* THE OggVorbis SOURCE CODE IS (C) COPYRIGHT 1994-2001 *
* by the XIPHOPHORUS Company http://www.xiph.org/ *
* *
********************************************************************

NEW AND IMPORTANT:

If you're used to the source distribution from the first two beta
releases, things are now rearranged a bit. Specifically, the
'vorbis' CVS module contains only the libvorbis, libvorbisfile, and
libvorbisenc libraries. Because Ogg bitstreams are to be used by other
Ogg codecs, Ogg framing and streaming functionality is now in libogg
(the 'ogg' CVS module). Vorbis utilities are in 'vorbis-tools' and various
player plugins are in 'vorbis-plugins'. For now, you'll need to check
out these other modules seperately. (Note: the xmms plugin is in the xmms
CVS tree in xmms/Input/vorbis.)

Secondly, the Ogg/Vorbis build systems now use automake. Instead of
'./configure; make', the proper build sequence (in each module) is
'./autogen.sh; make'.

You will also need the newest versions of autoconf, automake, and libtool
in order to compile vorbis from CVS. configure scripts are provided for you
in tarball distributions.

WHAT'S HERE:

This source distribution includes libvorbis and an example
encoder/player to demonstrate use of libvorbis and documentation on
the Ogg Vorbis audio coding format.

Directory:

./lib The source for the libraries, a BSD-license implementation
of the public domain Ogg Vorbis audio encoding format.

./include Library API headers

./debian Rules/spec files for building Debian .deb packages

./doc Vorbis documentation

./examples Example code illustrating programmatic use of libvorbis,
libvorbisfile and libvorbisenc

./mac Codewarrior project files and build tweaks for MacOS.

./win32 Win32 projects files and build automation

./vq Internal utilities for training/building new LSP/residue
and auxiliary codebooks.

WHAT IS VORBIS:

Vorbis is a general purpose audio and music encoding format
contemporary to MPEG-4's AAC and TwinVQ, the next generation beyond
MPEG audio layer 3. Unlike the MPEG sponsored formats (and other
proprietary formats such as RealAudio G2 and Windows' flavor of the
month), the Vorbis CODEC specification belongs to the public domain.
All the technical details are published and documented, and any
software entity may make full use of the format without royalty or
patent concerns.

This package contains:

.) libvorbis, a BSD-license software implementation of
the Vorbis specification by the Xiphophorus company
(http://www.xiph.org/)

.) libvorbisfile, a BSD-license convenience library
built on Vorbis designed to simplify common uses and a number of GPL
example programs

.) libvorbisenc, a BSD-license library that provides a simple, programmatic
encoding setup interface

.) example code making use of libogg, libvorbis, libvorbisfile and
libvorbisenc

CONTACT:

The Ogg homepage is located at 'http://www.xiph.org/ogg/'.
Vorbis's homepage is located at 'http://www.xiph.org/ogg/vorbis/'.
Up to date technical documents, contact information, source code and
pre-built utilities may be found there.

BUILDING FROM CVS:

./autogen.sh
make

and as root if desired:

make install

This will install the vorbis libraries (static and shared) into
/usr/local/lib, includes into /usr/local/include and API manpages
(once we write some) into /usr/local/man.

BUILDING FROM TARBALL DISTRIBUTIONS:

./configure
make

and optionally (as root):
make install

BUILDING RPMS:

after normal configuring:

make dist
rpm -ta libvorbis-.tar.gz

BUILDING ON MACOS 9:

Vorbis on MacOS 9 is built using CodeWarrior 5.3. To build it, first
verify that the Ogg libraries are already built following the
instructions in the Ogg module README. Open vorbis/mac/libvorbis.mcp,
switch to the "Targets" pane, select everything, and make the project.
Do the same thing to build libvorbisenc.mcp, and libvorbisfile.mcp (in
that order). In vorbis/mac/Output you will now have both debug and final
versions of Vorbis shared libraries to link your projects against.

To build a project using Ogg Vorbis, add access paths to your
CodeWarrior project for the ogg/include, ogg/mac/Output,
vorbis/include, and vorbis/mac/Output folders. Be sure that
"interpret DOS and Unix paths" is turned on in your project; it can
be found in the "access paths" pane in your project settings. Now
simply add the shared libraries you need to your project (OggLib and
VorbisLib at least) and #include "ogg/ogg.h" and "vorbis/codec.h"
wherever you need to access Ogg and Vorbis functionality.


$Id: README,v 1.11 2001/03/22 01:33:20 segher Exp $