Ejemplo n.º 1
0
 public WAVCreator(short formatAudio, short channels, int frequency, short bitspersample, uint time, int formWAV, string path)
 {
     Header = CreateHeader(formatAudio, channels, frequency, bitspersample);
     Form   = (FormWAV)formWAV;
     CreateSamples(time);
     WAVFile.WriteFile(path, Header, Buffer);
 }
Ejemplo n.º 2
0
 public WAVCreator(short formatAudio, short channels, int frequency, short bitspersample, uint time, int formWAV, string path)
 {
     Header = CreateHeader(formatAudio, channels, frequency, bitspersample);
     Form = (FormWAV)formWAV;
     CreateSamples(time);
     WAVFile.WriteFile(path, Header, Buffer);
 }