Questions related to vorbis audio encapsulated in Ogg file format. Vorbis is a free audio format specification 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
0
votes
0answers
28 views
OGGVorbis error when trying to compile vorbisfile_example on VS2012 [closed]
I know this is not the first time, some body having problems in building the ogg-vorbisexamples.
I have gone through all the possible explanations on google but still having the following error ...
1
vote
1answer
216 views
How can I get Vorbis libraries on Android?
OK, i've spent most of the day trying to do this, and I figure I've got to be missing something fairly obvious.
Vorbis files are apparently natively supported on the Android SDK. Is there any way to ...
0
votes
1answer
125 views
J2ME Player doesn't play files that were converted from ogg
So far all mp3 files I've tried work just fine, however, when trying a file I converted from Vorbis format it just wouldn't play.
No errors or anything, it's just that it doesn't make any sound.
...
2
votes
1answer
226 views
libvorbis audio decode from memory in C++
Given an encoded buffer in C++, what would be the steps using oggvorbis structs to decode the already in-memory data?
OggVorbis_File cannot be used, because assets are within compressed archives.
...
0
votes
0answers
398 views
FFMPEG failing to convert to ogv [closed]
I have several videos I'm trying to convert to mp4, swf and ogv. I've got the mp4 and swf's working, but ogv is failing and I'm not sure why. I understand all the arguments you can pass to ffmpeg, but ...
2
votes
1answer
253 views
How to calculate sampleTime and sampleDuration with ogg file
I have create ogg decoder in media foundation.
I have read some packets as a sample (compress data), now I need to know the sample' time and sample's duration.
Now I know the AvgBytesPerSec and ...
0
votes
1answer
218 views
Having trouble with undefined reference to error
I know there are a lot of posts related to this particular error but nothing seems to be helpful in ,my case, So please forgive me for that I am posting question after almost 2 days of research on ...
1
vote
0answers
104 views
How to get all packets of ogg file
I want to get all the vorbis packets of ogg file and put it into a list and I don't want to decode it right now.
now I have do this:
ogg_sync_state oy;
ogg_stream_state os;
ogg_page og;
ogg_packet ...
1
vote
1answer
39 views
how to get the VorbisFormat2
I try to decoder ogg in mediafoundation. now I have see the dshow filter but I don't understand how to create VORBISFORMAT2
struct VORBISFORMAT2
{
unsigned long channels;
unsigned long samplesPerSec;
...
1
vote
1answer
94 views
Using Vorbis without Ogg?
I'm wondering why Vorbis needs any container at all? I know you can stick Vorbis in an Ogg container or a Matroska container, but if I'm not going to bundle it with any video or any other multimedia ...
0
votes
1answer
94 views
How do I strip initial offsets from OGG files?
=== BACKGROUND ===
Some time ago I ripped a lot of music from an internet radio station. Unfortunately something seems to have went wrong, since the length of most files is displayed as being several ...
0
votes
1answer
90 views
cut exact time range from mp3/ogg
I have a heap of audio files on a CDN. Those are mp3's and ogg vorbises, in parallel. Those files are each worth about one hour of playback. I need to extract arbitrary parts from those files: I am ...
1
vote
0answers
120 views
Vorbis finding decompressed size of file
I'm working with JNI and Android NDK bindings to wrap around the Tremor version of Vorbis. So far i've succeeded in streaming sound from file to speakers.
However, i'd also like to be able to 'cache' ...
1
vote
1answer
243 views
Sequentially concatenate multiple ogg vorbis files into a single file with .NET?
Assuming I have multiple .ogg files which I need to combine sequentially into a single file, can anyone recommend a library or some code for doing so using .NET? Also assume they all have the same ...
-1
votes
1answer
200 views
How to convert .ogg (vorbis) to a std array? [closed]
I am trying to build an application and it needs signal processing. My question is how to convert an audio file to a processable C++ std array?
I need a library to do that for me in Ubuntu. I read ...
0
votes
1answer
311 views
Wrapping Speex format in an Ogg container..HowTo?
I'm looking for examples on how to wrap the speex format with the ogg format.
I stumbled upon the "fish" example (kfish)
but it would be nice if someone could point me in the direction of a "cut to ...
1
vote
1answer
483 views
Compiling libogg + libvorbis for iOS
I am trying to update an app, but it requires compiling libogg and libvorbis for iOS since the SDK is new and requires a recompilation.
No instructions were included. Does anyone know how to compile ...
0
votes
2answers
2k views
How to encode Recorded voice to ogg vorbis?
I have recorded voice with android AudioRecord and I would like to convert it to ogg vorbis as it is patent free. I have try vorbis-java beta, but it seem not work or I make some mistake.
Here are my ...
2
votes
1answer
300 views
Ogg playback in Java
I have tried many times trying to get ogg support in Java but have been unsuccessful.
I have tried using Jorbis and another method for implementing ogg playback in Java but cannot seem to do so.
...
0
votes
2answers
852 views
Vorbis decoder for Windows Phone 7
Anyone know of a vorbis decoder library that can be used on Windows Phone 7?
The lack of native code interop make re-using any of the native code implementations difficult (impossible?) but if there ...
0
votes
1answer
658 views
Write vorbis comment metadata (tags) to the existing FLAC file using libFLAC++
How to write vorbis comments metadata, i.e. tags (for example "TITLE"), to the existing FLAC file using libFLAC++ (http://flac.sourceforge.net)?
For example:
const char* fileName = ...
1
vote
3answers
2k views
Ogg Vorbis header specifications
I am looking for specifications for the ogg vorbis header packet format. I have searched the Internet without much success. Where can I find one?
11
votes
3answers
4k views
Best video format for HTML5?
I've got a set of videos that are going to be posted on a new site I'm developing, using our new html5 player. I know Firefox only supports .ogg format, whereas most others (including eventually IE9) ...
0
votes
1answer
267 views
Audio Encoder for Flash
Are there any audio encoding libraries for Flash? I need to record sound from a Flash applet, and then upload it to a server with HTTP.
The problem is that the raw audio file is really big. Is there ...
0
votes
2answers
493 views
How can I decode OGG vorbis data from a ByteBuffer?
The libraries I founded so far only have methods to decode from a file or InputStream. I have a ByteBuffer with OGG vorbis data and I need it decoded to PCM without having to write it to a file first.
...
2
votes
1answer
857 views
Convert wav to ogg vorbis in Python
How can I transcode a wav file to ogg vorbis format using Python?
I can convert to mp3 using PyMedia 1.3.7.3, but when I set the output stream type to 'ogg', I get the error: oggvorbis_encode_init: ...
2
votes
1answer
846 views
Minimizing latency in streaming audio with html 5
I'm trying to listen to a live audio stream on a webpage with a latency of less than 3 seconds. So far with ogg vorbis streams generated using ices & icecast, I've been unable to get latencies ...
0
votes
1answer
273 views
Looping OGG files with Adobe Alchemy
I'm trying to use Adobe's OggVorbis library. But I can't seem to get the Sound object to loop.
I even tried looping the _sound object inside the AudioDecoder.as in the ...
2
votes
1answer
3k views
Loop streaming .ogg audio - OpenAL
I have problem looping a streamed ogg vorbis file.
This is the code :
fslStream_OGG::fslStream_OGG()
{
className = "fslSound";
iMemSize = 0;
iLength = 0;
bSourceRelative = false;
bIsLooping = ...
0
votes
1answer
249 views
Error while linking libvorbisfile.dylib into Mac application
I'm working on a program that loads sounds from Ogg Vorbis files, but whatever I do, the XCode project just doesn't seem to want to link libvorbisfile.a into my program. I keep getting linking errors:
...
0
votes
1answer
1k views
Stream Ogg File
Does anyone know how to stream Ogg files without fully downloading them first over a Socket(in byte[] format).
I am trying to create a music streaming application and I managed to do it with MP3's ...
0
votes
3answers
394 views
PulpCore music playback - loop sound and animate volume
I have been experimenting with PulpCore, trying to create my own tower defence game (not-playable yet), and I am enjoying it very much I ran into a problem that I can't quite figure out. I extended ...
3
votes
1answer
2k views
Is there anyway to get ID3 metadata from an MP3 or Vorbis comments from Ogg via the HTML5 audio element?
Mozilla Developer Center's HTML5 media guide describes an event for audio and video elements called "loadedmetadata". Is there anyway to get the metadata for files? I am writing an HTML5 extension for ...
2
votes
2answers
1k views
How do I play an ogg vorbis file in Silverlight?
I'd like to play back ogg vorbis audio from http in Silverlight. What do I need to make this happen?
2
votes
2answers
1k views
Reading tag data for Ogg/Flac files
I'm working on a C library that reads tag information from music files. I've already got ID3v2 taken care of, but I can't figure out how Ogg files are structured.
I opened a .ogg file in a hexeditor ...
6
votes
1answer
1k views
Pure C# open source PCM to Ogg convertor?
Microsoft Silverlight 4 is in beta. It supports PCM audio output. It would be madness to stream PCM over internet (for ex in P2P chart webApp) so we need Pure C# open source PCM to Ogg convertor. No ...
0
votes
1answer
675 views
XAudio2 and variable bitrate audio
How do I go about correctly playing audio files which may have a variable bitrate (and even a variable number of channels in some cases), such as ogg/vorbis?
XAudio expects this information in a ...
0
votes
1answer
434 views
How to encode the real time audio?
I am on creating voice report. The user has to submit his voice report and it should simultaneously encode the audio data using Vorbis encoder. Its working fine but
encoding will start after the ...
5
votes
6answers
3k views
How to decode wav, mp3, and/or ogg in .Net/Mono?
I am looking for a cross-platform (.Net and Mono on Windows, MacOSX, and Linux) way to decode wav, mp3, or ogg files such that I can then play the decoded streams through DirectSound or OpenAL as ...
15
votes
9answers
5k views
How can I play compressed sound files in C# in a portable way?
Is there a portable, not patent-restricted way to play compressed sound files in C# / .Net? I want to play short "jingle" sounds on various events occuring in the program.
System.Media.SoundPlayer ...