Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/naudio/vorbis
Vorbis decoder for NAudio
https://github.com/naudio/vorbis
Last synced: 3 days ago
JSON representation
Vorbis decoder for NAudio
- Host: GitHub
- URL: https://github.com/naudio/vorbis
- Owner: naudio
- License: mit
- Created: 2015-04-17T13:17:35.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2024-03-29T01:33:15.000Z (10 months ago)
- Last Synced: 2025-01-23T04:08:56.580Z (12 days ago)
- Language: C#
- Size: 479 KB
- Stars: 49
- Watchers: 5
- Forks: 15
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
NAudio.Vorbis [![Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/naudio/Vorbis?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
-------NAudio.Vorbis is a convenience wrapper to enable easy integration of [NVorbis](https://github.com/ioctlLR/NVorbis) into NAudio projects.
To use:
```cs
// add a reference to NVorbis.dll
// add a reference to NAudio.Vorbis.dllusing (var vorbisStream = new NAudio.Vorbis.VorbisWaveReader("path/to/file.ogg"))
using (var waveOut = new NAudio.Wave.WaveOutEvent())
{
waveOut.Init(vorbisStream);
waveOut.Play();
// wait here until playback stops or should stop
}
```If you have any questions or comments, feel free to join us on Gitter. If you have any issues or feature requests, please submit them in the issue tracker.