我想使用CSCore.Streams.FadeInOut类,它包含在CSCore-Library中。我想淡入淡出我播放的歌曲。但我不知道如何使用它。有人知道吗?
问问题
1081 次
1 回答
4
正如您已经提到的,您可以使用 FadeInOut 类。签出这个例子:
IWaveSource source = CodecFactory.Instance.GetCodec(@"C:\Temp\test.mp3");
using (var fadeInOut = new FadeInOut(source, 1.0f))
{
using (var soundOut = new WasapiOut())
{
soundOut.Initialize(fadeInOut.ToWaveSource());
soundOut.Play();
Thread.Sleep(1000);
fadeInOut.StartFading(2, 0.0f); //reduce the volume to 0.0f over 2 seconds
Thread.Sleep(3000);
fadeInOut.StopFading(); //stop fading
fadeInOut.StartFading(2, 1.0f); //fade the volume to 1.0f over 2 seconds
Console.ReadKey();
}
}
于 2014-05-11T10:56:37.710 回答