Libvorbis: Difference between revisions

From CBLFS
Jump to navigationJump to search
Oppiz (talk | contribs)
No edit summary
No edit summary
 
(12 intermediate revisions by 6 users not shown)
Line 2: Line 2:
|-
|-
!Download Source:
!Download Source:
| http://downloads.xiph.org/releases/vorbis/libvorbis-1.1.2.tar.gz
| http://downloads.xiph.org/releases/vorbis/libvorbis-{{Libvorbis-Version}}.tar.gz
|}
|}


----
----


== Dependencies ==
{{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.


Required
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/}}


*[[libogg]]
== Dependencies ==


Optional
=== Required ===
* [[libogg]]


*[[pkg-config]]
=== Optional ===
*[[libxslt]]
* [[libXSLT]]
* [[pkg-config]]


== Non-Multilib ==
== Non-Multilib ==
Line 35: Line 37:
Configure and compile the package:
Configure and compile the package:


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


Line 41: Line 44:


  make install
  make install
 
=== N32 ===
=== N32 ===


Configure and compile the package:
Configure and compile the package:


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


Line 52: Line 56:


  make install
  make install
 
=== 64Bit ===
=== 64Bit ===


Configure and compile the package:
Configure and compile the package:


  CC="gcc ${BUILD64}" ./configure --prefix=/usr --libdir=/usr/lib64 &&
  CC="gcc ${BUILD64}" PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" \
./configure --prefix=/usr --libdir=/usr/lib64 \
--with-ogg-libraries=/usr/lib64 &&
  make
  make


Line 64: Line 70:
  make install
  make install


*[[Audio/Media]]
[[Category:Media Libraries]]
*[[Main Page]]

Latest revision as of 15: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