NAudio.Vorbis.Latest is a convenience wrapper to enable easy integration of NVorbis into NAudio projects. Drop-in replacement for NAudio.Vorbis NuGet package.
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.