Méthode | Description | |
---|---|---|
Dispose ( ) : void |
Closes this WaveFile
|
|
WaveFileWriter ( Stream outStream, |
Creates a WaveFileWriter that writes to a Stream.
|
|
Write ( byte Data, int Length ) : bool |
Writes bytes to the WaveFile
|
|
Write ( float Data, int Length ) : bool |
Writes 32 bit float samples to the Wave file
|
|
Write ( short Data, int Length ) : bool |
Writes 16 bit samples to the Wave file
|
Méthode | Description | |
---|---|---|
Dispose ( bool Disposing ) : void |
Actually performs the close,making sure the header contains the correct data
|
public WaveFileWriter ( Stream outStream, |
||
outStream | Stream | |
format | ||
Résultat | System |
public Write ( byte Data, int Length ) : bool | ||
Data | byte | the Buffer containing the wave data |
Length | int | the number of bytes to write |
Résultat | bool |
public Write ( float Data, int Length ) : bool | ||
Data | float | The Buffer containing the wave data |
Length | int | The number of bytes to write |
Résultat | bool |
public Write ( short Data, int Length ) : bool | ||
Data | short | The Buffer containing the wave data |
Length | int | The number of bytes to write |
Résultat | bool |