Skip to content

i2van/NAudio.Vorbis.Latest

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.