Difference between revisions of "Libvorbis"

From CBLFS
Jump to navigationJump to search
 
(5 intermediate revisions by 5 users not shown)
Line 7: Line 7:
 
----
 
----
  
== Introduction to Libvorbis ==
+
{{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 Libvorbis package contains a general purpose audio and music encoding format. This is useful for creating (encoding) and playing (decoding) sound in an open (patent free) format.
+
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/}}
  
 
== Dependencies ==
 
== Dependencies ==
  
Required  
+
=== Required ===
 +
* [[libogg]]
  
*[[libogg]]
+
=== Optional ===
 
+
* [[libXSLT]]
Optional
+
* [[pkg-config]]
 
 
*[[pkg-config]]
 
*[[libXSLT]]
 
  
 
== Non-Multilib ==
 
== Non-Multilib ==
Line 64: 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 70: Line 69:
  
 
  make install
 
  make install
 +
 +
[[Category:Media Libraries]]

Latest revision as of 16:27, 19 March 2009

Download Source: http://downloads.xiph.org/releases/vorbis/libvorbis-1.3.4.tar.gz

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