Questions tagged [vorbis]

Questions related to Vorbis audio compression standard. Vorbis is a free software / open source project headed by the Xiph.Org Foundation. The project produces an audio format specification and software implementation (codec) for lossy audio compression.

Vorbis is a free software / open source project headed by the Xiph.Org Foundation (formerly Xiphophorus company). The project produces an audio format specification and software implementation (codec) for lossy audio compression. Vorbis is most commonly used in conjunction with the Ogg container format and it is therefore often referred to as Ogg Vorbis.

More details at

  1. http://en.wikipedia.org/wiki/Vorbis
  2. http://www.vorbis.com/faq/
94 questions
0
votes
0 answers

FFmpeg library: webm (vorbis) audio to aac conversion

I have written a small program to convert webm (vorbis) audio to aac format, using FFmpeg libraries - C++ (on Windows using 32 bit Zeranoe FFmpeg builds). After writing this program, I find it is sometimes converting files as per expectation, and at…
taansari
  • 95
  • 4
  • 13
0
votes
2 answers

enable the "vorbis_parser.h" in ffmpeg build

ffmpeg build configuration is such that I have disabled everything and selectively enabled decoders and encoders and demuxers for the formats that I need. I want to use the vorbis_parser.h for parsing the extradata, I tried using the…
0
votes
1 answer

Vorbis SPI throws UnsupportedAudioFileException for OGG files

I'm trying to play an OGG Vorbis file from a Java program. PCM files (*.wav) work fine with this code: public void play(String resFile) throws Exception { AudioInputStream audioInputStream = null; URL audioSource = new…
Cos64
  • 1,437
  • 1
  • 18
  • 29
0
votes
2 answers

OGG Vorbis: Defined, but not used - how to suppress?

I have a group project at school (3D FPS game) and I program audio using OpenAL and OGG Vorbis in C++. Our compiler is set to warn us about defined, but not used variables, which turns out to be a problem with Vorbis. When I compile our application,…
Filip Vondrášek
  • 1,163
  • 1
  • 12
  • 26
1 2 3 4 5 6
7