Tagged Questions
The oggvorbis tag has no wiki summary.
15
votes
9answers
4k 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 ...
4
votes
6answers
2k 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 ...
3
votes
1answer
990 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
1answer
95 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.
...
2
votes
1answer
1k 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 = ...
2
votes
2answers
779 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
644 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 ...
1
vote
1answer
71 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
vote
1answer
473 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: ...
1
vote
1answer
619 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
0answers
19 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' ...
0
votes
1answer
61 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 ...
0
votes
0answers
21 views
how to use/understand private data of v_theora & a_vorbits in matroska file format?
see i have extracted all frames of v_theora & a_vorbits codec from any matroska file in separate files. now that files are not playable by any player. Now i am concern that to make playable those ...
0
votes
0answers
142 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
0answers
36 views
Are there any notoriously bad Ogg Vorbis encoders? [closed]
I am wondering because I have noticed a particular disturbing artifact on many Spotify tracks. What could cause this? I'd like to reproduce this sound in order to back up my suspicions. I can't seem ...
0
votes
0answers
92 views
How do I programmatically combine two ogg files with silent padding (DirectShow?)
I want to combine two (or more) Ogg vorbis files, adding configurable silence between them, into a single Ogg audio.
Using copy to merge two ogg files leaves two separate streams within the same ...
0
votes
0answers
179 views
Flash audio streamer that supports Ogg Vorbis files and works in IE
I'd love to use tools like MediaElement.js or jPlayer, but they don't support streaming Ogg Vorbis files in IE. The only thing I've found that works is the Cortardo Java applet, which can be seen in ...
0
votes
2answers
294 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
339 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 = ...
0
votes
3answers
322 views
ogg vorbis header specifications
Where are the specifications for the ogg vorbis header packet format? ... I can't find them anywhere!
0
votes
1answer
155 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
237 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.
...
0
votes
1answer
177 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 ...
0
votes
1answer
176 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
559 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
330 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 ...
0
votes
1answer
239 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 ...