我想使用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/

10-09 21:52