All Projects → xiph → Vorbis

xiph / Vorbis

Licence: bsd-3-clause
Reference implementation of the Ogg Vorbis audio format.

Programming Languages

c
50402 projects - #5 most used programming language

Projects that are alternatives of or similar to Vorbis

Minimp3
Minimalistic MP3 decoder single header library
Stars: ✭ 898 (+231.37%)
Mutual labels:  audio, codec
Digital video introduction
A hands-on introduction to video technology: image, video, codec (av1, vp9, h265) and more (ffmpeg encoding).
Stars: ✭ 12,184 (+4395.94%)
Mutual labels:  audio, codec
Opus
Modern audio compression for the internet.
Stars: ✭ 1,171 (+332.1%)
Mutual labels:  audio, codec
Vgmstream
vgmstream - A library for playback of various streamed audio formats used in video games.
Stars: ✭ 524 (+93.36%)
Mutual labels:  audio, codec
urlpack
Pure JavaScript toolkit for data URLs (MessagePack, Base58 and Base62)
Stars: ✭ 51 (-81.18%)
Mutual labels:  encoder, codec
Axiom
An FFmpeg GUI for Windows
Stars: ✭ 560 (+106.64%)
Mutual labels:  audio, encoder
Wav
Battle tested Wav decoder/encoder
Stars: ✭ 139 (-48.71%)
Mutual labels:  audio, encoder
Screen Recorder Ffmpeg Cpp
*Multimedia project* A screen recording application to capture your desktop and store in a video format. Click here to watch the demo
Stars: ✭ 98 (-63.84%)
Mutual labels:  encoder, codec
Flacon
Audio File Encoder. Extracts audio tracks from an audio CD image to separate tracks.
Stars: ✭ 252 (-7.01%)
Mutual labels:  audio, encoder
Jackknife
⚔️ 金轮法王,哦不,是轮子大师带你玩转Android,是时候尝试下MVVM了。这是一个Android应用开发全家桶库,支持Kotlin+MVVM+Dagger2+Retrofit架构。
Stars: ✭ 215 (-20.66%)
Mutual labels:  audio, codec
Speex
Speex voice codec mirror - THIS IS A MIRROR, DEVELOPMENT HAPPENS AT https://gitlab.xiph.org/xiph/speex
Stars: ✭ 254 (-6.27%)
Mutual labels:  audio, codec
android-opus-codec
Implementation of Opus encoder and decoder in C++ for android with JNI
Stars: ✭ 44 (-83.76%)
Mutual labels:  encoder, codec
Androidffmpeg
android 读取摄像头和麦克风,使用rtmp推流
Stars: ✭ 298 (+9.96%)
Mutual labels:  audio, encoder
Ffmediaelement
FFME: The Advanced WPF MediaElement (based on FFmpeg)
Stars: ✭ 733 (+170.48%)
Mutual labels:  audio, codec
Ks265codec
ks cloud hevc(h265) encoder decoder test and description
Stars: ✭ 192 (-29.15%)
Mutual labels:  encoder, codec
Faac
Freeware Advanced Audio Coder faac mirror
Stars: ✭ 102 (-62.36%)
Mutual labels:  audio, encoder
Minih264
Minimalistic H264/SVC encoder single header library
Stars: ✭ 390 (+43.91%)
Mutual labels:  encoder, codec
Ffmpeg Video Player
An FFmpeg and SDL Tutorial.
Stars: ✭ 149 (-45.02%)
Mutual labels:  audio, codec
ffcvt
ffmpeg convert wrapper tool
Stars: ✭ 32 (-88.19%)
Mutual labels:  encoder, codec
schifra
C++ Reed Solomon Error Correcting Library https://www.schifra.com
Stars: ✭ 28 (-89.67%)
Mutual labels:  encoder, codec

Vorbis

GitLab Build Status Travis Build Status AppVeyor Build status

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 license fee, royalty or patent concerns.

This package contains:

  • libvorbis, a BSD-style license software implementation of the Vorbis specification by the Xiph.Org Foundation (https://xiph.org/)

  • libvorbisfile, a BSD-style license convenience library built on Vorbis designed to simplify common uses

  • libvorbisenc, a BSD-style license library that provides a simple, programmatic encoding setup interface

  • example code making use of libogg, libvorbis, libvorbisfile and libvorbisenc

What's here

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

You'll need libogg (distributed separately) to compile this library. A more comprehensive set of utilities is available in the vorbis-tools package.

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

  • macosx Project files for MacOS X.

  • win32 Win32 projects files and build automation

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

Contact

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

Building

Building from master

Development source is under git revision control at https://gitlab.xiph.org/xiph/vorbis.git. You will also need the newest versions of autoconf, automake, libtool and pkg-config in order to compile Vorbis from development source. A configure script is provided for you in the source tarball distributions.

./autogen.sh
./configure
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.

Documentation building requires xsltproc and pdfxmltex.

Building from tarball distributions

./configure
make

and optionally (as root):

make install

Building RPM packages

after normal configuring:

make dist
rpm -ta libvorbis-<version>.tar.gz

Building with CMake

Ogg supports building using CMake. CMake is a meta build system that generates native projects for each platform. To generate projects just run cmake replacing YOUR-PROJECT-GENERATOR with a proper generator from a list here:

cmake -G YOUR-PROJECT-GENERATOR .

Note that by default cmake generates projects that will build static libraries. To generate projects that will build dynamic library use BUILD_SHARED_LIBS option like this:

cmake -G YOUR-PROJECT-GENERATOR -DBUILD_SHARED_LIBS=1 .

After projects are generated use them as usual

Building on Windows

Use proper generator for your Visual Studio version like:

cmake -G "Visual Studio 12 2013" .

Building on Mac OS X

Use Xcode generator. To build framework run:

cmake -G Xcode -DBUILD_FRAMEWORK=1 .

Building on Linux

Use Makefile generator which is default one.

cmake .
make

License

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 COPYRIGHT (C) 1994-2020 by the Xiph.Org Foundation https://xiph.org/

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].