如何淡入和淡出.WAV文件?

时间:2013-08-08 01:02:56

标签: .net vb.net visual-studio-2010 fadein wav

我创建了一个带有.wav文件并播放它的函数。我怎么能在播放时淡入淡出.wav文件

    Dim wav1 As List(Of Byte) = IO.File.ReadAllBytes("hello.wav").ToList
    Using ms As New MemoryStream(wav1.ToArray)
        Using snd As New System.Media.SoundPlayer(ms)
            snd.Play()
        End Using
    End Using

1 个答案:

答案 0 :(得分:0)