Skip to content

Latest commit

 

History

History
23 lines (16 loc) · 1.16 KB

README.md

File metadata and controls

23 lines (16 loc) · 1.16 KB

NAudio.Vorbis.Latest

Latest build NuGet Downloads License

NAudio.Vorbis.Latest is a convenience wrapper to enable easy integration of NVorbis into NAudio projects. Drop-in replacement for NAudio.Vorbis NuGet package.

Example

using NAudio.Vorbis;
using NAudio.Wave;

using var vorbisWaveReader = new VorbisWaveReader("path/to/file.ogg");
using var waveOutEvent = new WaveOutEvent();

waveOutEvent.Init(vorbisWaveReader);
waveOutEvent.Play();

// Wait here until playback stops or should stop.