Accord.DirectSound.WaveFileAudioSource.WaveFileAudioSource C# (CSharp) Method

WaveFileAudioSource() public method

Constructs a new Wave file audio source.
public WaveFileAudioSource ( string fileName ) : Accord.Audio
fileName string The path for the underlying source.
return Accord.Audio
        public WaveFileAudioSource(string fileName)
        {
            this.fileName = fileName;
            this.decoder = new WaveDecoder();
        }

Same methods

WaveFileAudioSource::WaveFileAudioSource ( Stream stream ) : Accord.Audio