gpt4 book ai didi

c# - 如何使用 CSCore.Streams.FadeInOut

转载 作者:太空宇宙 更新时间:2023-11-03 21:32:22 24 4
gpt4 key购买 nike

我想使用类 CSCore.Streams.FadeInOut ,包含在 CSCore-Library 中.我想淡入和淡出我播放的歌曲。但我不知道如何使用它。有人知道吗?

最佳答案

正如您已经提到的,您可以使用 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();
}
}

关于c# - 如何使用 CSCore.Streams.FadeInOut,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23591476/

24 4 0