Created Release: NVorbis 0.8.0test1 (Sep 16, 2013)
TESTING RELEASEWhile this version should be more resilient than previous releases, please be aware that it has not been tested as heavily as 0.7.4.Decoupled the file / stream reading logic from the...
View ArticleCommented Issue: Some (other) Ogg files decode improperly [25]
This has probably nothing to do with [Issue 24](https://nvorbis.codeplex.com/workitem/24) since the provided ogg file decodes properly now. I have, however, experienced problems with another ogg file....
View ArticleCommented Issue: Crashes with this ogg [20]
Not sure if it's an issue with the file or OpenAL but this consistently fails the ALHelper.Check routine. Skipping all checks allows the sound to play in the test app but the memory grows with each...
View ArticleNew Post: network stream no?
var vorbis = new NVorbis.VorbisReader(@"C:\PATH\TO\OGG\FILE.ogg") NO network stream... Support Is it impossible? Or, Is there a way already? byte[] bytes MemoryStream ms = new MemoryStream(bytes) (var...
View ArticleNew Post: I desperately needed help..NVorbis.VorbisReader
Sorry for taking so long... Was offline for a much needed holiday. :) Please see the documentation for an example... vorbis.ReadSamples(...) returns the number of individual samples written to buffer...
View ArticleNew Post: network streaming
hi.... I am sorry. My English is poor. Is it possible to perform a network streaming playback of ogg? Can download the ogg file, and at the same time playing?
View ArticleNew Post: network streaming
VorbisReader has a constructor that allows you to pass in any Stream (whether FileStream or otherwise), so you can pass in a NetworkStream and it'll work. For your scenario, I would create a custom...
View ArticleNew Post: network streaming
hi.... I want to play by dividing the ogg file of one. It tries to play a file that it does not recognize the end time. My source... var fs =...
View ArticleNew Post: network streaming
I think I see what you're doing... It looks like you concatenated multiple Ogg files together and want to play back each audio stream in the resulting Ogg file. NVorbis theoretically supports that, but...
View ArticleSource code checked in, #a496a70db744d644ab87c1c9c62bddd1764f2a07
* Updated copyright statements * Updated version * Updated nuspec
View ArticleCreated Unassigned: Add public get/seek position in samples [26]
Basically, some sort of public access to VorbisReader.ActiveDecoder.CurrentPosition and VorbisReader.ActiveDecoder.SeekTo().I've attached a patch file containing a simple implementation.
View ArticleEdited Unassigned: Add public get/seek position in samples [26]
Basically, some sort of public access to VorbisReader.ActiveDecoder.CurrentPosition and VorbisReader.ActiveDecoder.SeekTo().I've attached a patch file for VorbisReader.cs containing a simple...
View ArticleCommented Unassigned: Add public get/seek position in samples [26]
Basically, some sort of public access to VorbisReader.ActiveDecoder.CurrentPosition and VorbisReader.ActiveDecoder.SeekTo().I've attached a patch file for VorbisReader.cs containing a simple...
View ArticleEdited Feature: Add public get/seek position in samples [26]
Basically, some sort of public access to VorbisReader.ActiveDecoder.CurrentPosition and VorbisReader.ActiveDecoder.SeekTo().I've attached a patch file for VorbisReader.cs containing a simple...
View ArticleNew Post: Determining total amount of samples
I'm using VorbisReader to load a full decoded ogg file into memory (which I know is silly, but just hear me out). Is there a way to determine the total amount of samples that will be read by...
View ArticleNew Post: Determining total amount of samples
In the current version, no. That said, you should be able to get really close with the calculation you are using. When I get around to releasing v0.8, you'll be able to use the new TotalSamples...
View ArticleCommented Feature: Add public get/seek position in samples [26]
Basically, some sort of public access to VorbisReader.ActiveDecoder.CurrentPosition and VorbisReader.ActiveDecoder.SeekTo().I've attached a patch file for VorbisReader.cs containing a simple...
View ArticleCreated Unassigned: Seeking using VorbisReader.DecodedTime causes exception...
Hi!I updated to the latest version and tried it to see if it's safe to update to, and found an issue with one of my Ogg files.In the OggStream class that's in the repository, I set...
View ArticleCommented Unassigned: Seeking using VorbisReader.DecodedTime causes exception...
Hi!I updated to the latest version and tried it to see if it's safe to update to, and found an issue with one of my Ogg files.In the OggStream class that's in the repository, I set...
View ArticleNew Post: Leaking memory when using a MemoryStream with NVorbis
First off thanks for such a handy project! It's been a major help to me on my current project that I'm developing in Unity. I did run into a bit of an issue though. I'm not sure if it's limited to...
View Article