Difference between revisions of "Libvorbis"
(I filled in the package description.) |
|||
(4 intermediate revisions by 4 users not shown) | |||
Line 7: | Line 7: | ||
---- | ---- | ||
− | + | {{Package-Introduction|The Libvorbis package provides libraries for dealing with Ogg Vorbis files. Ogg Vorbis is a fully open, non-proprietary, patent-and-royalty-free, general-purpose compressed audio format for mid to high quality (8kHz-48.0kHz, 16+ bit, polyphonic) audio and music at fixed and variable bitrates from 16 to 128 kbps/channel. This places Vorbis in the same competitive class as audio representations such as MPEG-4 (AAC), and similar to, but higher performance than MPEG-1/2 audio layer 3, MPEG-4 audio (TwinVQ), WMA and PAC. | |
− | + | The bitstream format for Vorbis I was frozen Monday, May 8th 2000. All bitstreams encoded since will remain compatible with all future releases of Vorbis.|http://xiph.org/vorbis/}} | |
− | |||
− | The bitstream format for Vorbis I was frozen Monday, May 8th 2000. All bitstreams encoded since will remain compatible with all future releases of Vorbis. | ||
− | |||
− | |||
== Dependencies == | == Dependencies == | ||
− | Required | + | === Required === |
+ | * [[libogg]] | ||
− | *[[ | + | === Optional === |
− | + | * [[libXSLT]] | |
− | + | * [[pkg-config]] | |
− | |||
− | *[[pkg-config | ||
− | |||
== Non-Multilib == | == Non-Multilib == | ||
Line 68: | Line 62: | ||
CC="gcc ${BUILD64}" PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" \ | CC="gcc ${BUILD64}" PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" \ | ||
− | ./configure --prefix=/usr --libdir=/usr/lib64 && | + | ./configure --prefix=/usr --libdir=/usr/lib64 \ |
+ | --with-ogg-libraries=/usr/lib64 && | ||
make | make | ||
Line 74: | Line 69: | ||
make install | make install | ||
+ | |||
+ | [[Category:Media Libraries]] |
Latest revision as of 15:27, 19 March 2009
Download Source: | http://downloads.xiph.org/releases/vorbis/libvorbis-1.3.4.tar.gz |
---|
Contents
Introduction to Libvorbis
The Libvorbis package provides libraries for dealing with Ogg Vorbis files. Ogg Vorbis is a fully open, non-proprietary, patent-and-royalty-free, general-purpose compressed audio format for mid to high quality (8kHz-48.0kHz, 16+ bit, polyphonic) audio and music at fixed and variable bitrates from 16 to 128 kbps/channel. This places Vorbis in the same competitive class as audio representations such as MPEG-4 (AAC), and similar to, but higher performance than MPEG-1/2 audio layer 3, MPEG-4 audio (TwinVQ), WMA and PAC.
The bitstream format for Vorbis I was frozen Monday, May 8th 2000. All bitstreams encoded since will remain compatible with all future releases of Vorbis.
Project Homepage: http://xiph.org/vorbis/
Dependencies
Required
Optional
Non-Multilib
Configure and compile the package:
./configure --prefix=/usr && make
Install the package:
make install
Multilib
32Bit
Configure and compile the package:
CC="gcc ${BUILD32}" PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" \ ./configure --prefix=/usr && make
Install the package:
make install
N32
Configure and compile the package:
CC="gcc ${BUILDN32}" PKG_CONFIG_PATH="${PKG_CONFIG_PATHN32}" \ ./configure --prefix=/usr --libdir=/usr/lib32 && make
Install the package:
make install
64Bit
Configure and compile the package:
CC="gcc ${BUILD64}" PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" \ ./configure --prefix=/usr --libdir=/usr/lib64 \ --with-ogg-libraries=/usr/lib64 && make
Install the package:
make install