Example #1
0
 public WAVWriter(string path, Stream IO, WAVWriterSettings settings)
 {
     m_settings = settings;
     _path      = path;
     _IO        = IO != null ? IO : new FileStream(path, FileMode.Create, FileAccess.Write, FileShare.Read);
     _bw        = new BinaryWriter(_IO);
 }
Example #2
0
 public WAVWriter(string path, WAVWriterSettings settings)
     : this(path, null, settings)
 {
 }