Ejemplo n.º 1
0
 public FLAC(string path, Format format)
 {
     filePath    = path;
     AudioFormat = format;
     header      = new FlacHeader();
     resetData();
 }
Ejemplo n.º 2
0
 public FLAC(string path)
 {
     filePath = path;
     header   = new FlacHeader();
     resetData();
 }