hermes-client/Chat/Speech/AudioPlaybackEngine.cs

113 lines
3.4 KiB
C#
Raw Normal View History

2023-12-30 04:27:31 -05:00
using NAudio.Wave;
using NAudio.Extras;
using NAudio.Wave.SampleProviders;
public sealed class AudioPlaybackEngine : IDisposable
2023-12-30 04:27:31 -05:00
{
public int SampleRate { get; }
private readonly IWavePlayer _outputDevice;
private readonly MixingSampleProvider _mixer;
2023-12-30 04:27:31 -05:00
public AudioPlaybackEngine(int sampleRate = 44100, int channelCount = 2)
2023-12-30 04:27:31 -05:00
{
SampleRate = sampleRate;
_outputDevice = new WaveOutEvent();
_mixer = new MixingSampleProvider(WaveFormat.CreateIeeeFloatWaveFormat(sampleRate, channelCount));
_mixer.ReadFully = true;
_outputDevice.Init(_mixer);
_outputDevice.Play();
2023-12-30 04:27:31 -05:00
}
private ISampleProvider ConvertToRightChannelCount(ISampleProvider? input)
2023-12-30 04:27:31 -05:00
{
if (input == null)
throw new NullReferenceException(nameof(input));
if (input.WaveFormat.Channels == _mixer.WaveFormat.Channels)
2023-12-30 04:27:31 -05:00
return input;
if (input.WaveFormat.Channels == 1 && _mixer.WaveFormat.Channels == 2)
2023-12-30 04:27:31 -05:00
return new MonoToStereoSampleProvider(input);
if (input.WaveFormat.Channels == 2 && _mixer.WaveFormat.Channels == 1)
return new StereoToMonoSampleProvider(input);
2023-12-30 04:27:31 -05:00
throw new NotImplementedException("Not yet implemented this channel count conversion");
}
public void PlaySound(string fileName)
{
var input = new AudioFileReader(fileName);
AddMixerInput(new WdlResamplingSampleProvider(ConvertToRightChannelCount(new AutoDisposeFileReader(input)), SampleRate));
2023-12-30 04:27:31 -05:00
}
public void PlaySound(NetworkWavSound sound)
{
AddMixerInput(new CachedWavProvider(sound));
}
public ISampleProvider ConvertSound(IWaveProvider provider)
{
ISampleProvider? converted = null;
if (provider.WaveFormat.Encoding == WaveFormatEncoding.Pcm)
{
if (provider.WaveFormat.BitsPerSample == 8)
{
2023-12-30 04:27:31 -05:00
converted = new Pcm8BitToSampleProvider(provider);
}
else if (provider.WaveFormat.BitsPerSample == 16)
{
2023-12-30 04:27:31 -05:00
converted = new Pcm16BitToSampleProvider(provider);
}
else if (provider.WaveFormat.BitsPerSample == 24)
{
2023-12-30 04:27:31 -05:00
converted = new Pcm24BitToSampleProvider(provider);
}
else if (provider.WaveFormat.BitsPerSample == 32)
{
2023-12-30 04:27:31 -05:00
converted = new Pcm32BitToSampleProvider(provider);
}
}
else if (provider.WaveFormat.Encoding == WaveFormatEncoding.IeeeFloat)
{
if (provider.WaveFormat.BitsPerSample == 64)
{
2023-12-30 04:27:31 -05:00
converted = new WaveToSampleProvider64(provider);
}
else
{
2023-12-30 04:27:31 -05:00
converted = new WaveToSampleProvider(provider);
}
}
else
{
2023-12-30 04:27:31 -05:00
throw new ArgumentException("Unsupported source encoding while adding to mixer.");
}
return ConvertToRightChannelCount(converted);
2023-12-30 04:27:31 -05:00
}
public void AddMixerInput(ISampleProvider input)
{
_mixer.AddMixerInput(input);
2023-12-30 04:27:31 -05:00
}
public void AddMixerInput(IWaveProvider input)
{
_mixer.AddMixerInput(input);
2023-12-30 04:27:31 -05:00
}
public void RemoveMixerInput(ISampleProvider sound)
{
_mixer.RemoveMixerInput(sound);
2023-12-30 04:27:31 -05:00
}
public void AddOnMixerInputEnded(EventHandler<SampleProviderEventArgs> e)
{
_mixer.MixerInputEnded += e;
2023-12-30 04:27:31 -05:00
}
public void Dispose()
{
_outputDevice.Dispose();
2023-12-30 04:27:31 -05:00
}
}