Property | Type | Description | |
---|---|---|---|
outBuffer | byte[] |
Method | Description | |
---|---|---|
Flush ( ) : void |
Finalise compression, add final output to output stream and close encoder
|
|
GetLameInstance ( ) : LibMp3Lame |
Get internal LAME library instance
|
|
LameMP3FileWriter ( Stream outStream, |
Create MP3FileWriter to write to supplied stream
|
|
LameMP3FileWriter ( Stream outStream, |
Create MP3FileWriter to write to supplied stream
|
|
LameMP3FileWriter ( string outFileName, |
Create MP3FileWriter to write to a file on disk
|
|
LameMP3FileWriter ( string outFileName, |
Create MP3FileWriter to write to a file on disk
|
|
Read ( byte buffer, int offset, int count ) : int |
Reading not supported. Throws NotImplementedException.
|
|
Seek ( long offset, SeekOrigin origin ) : long |
Seeking not supported. Throws NotImplementedException.
|
|
SetLength ( long value ) : void |
Setting length not supported. Throws NotImplementedException.
|
|
Write ( byte buffer, int offset, int count ) : void |
Add data to output buffer, sending to encoder when buffer full
|
Method | Description | |
---|---|---|
Dispose ( bool final ) : void |
Dispose of object
|
Method | Description | |
---|---|---|
Encode ( ) : void | ||
encode_float_mono ( ) : int | ||
encode_float_stereo ( ) : int | ||
encode_pcm_16_mono ( ) : int | ||
encode_pcm_16_stereo ( ) : int |
protected Dispose ( bool final ) : void | ||
final | bool | True if called from destructor, false otherwise |
return | void |
public LameMP3FileWriter ( Stream outStream, |
||
outStream | Stream | Stream to write encoded data to |
format | Input WaveFormat | |
quality | LAMEPreset | LAME quality preset |
return | System |
public LameMP3FileWriter ( Stream outStream, |
||
outStream | Stream | Stream to write encoded data to |
format | Input WaveFormat | |
bitRate | int | Output bit rate in kbps |
return | System |
public LameMP3FileWriter ( string outFileName, |
||
outFileName | string | Name of file to create |
format | Input WaveFormat | |
quality | LAMEPreset | LAME quality preset |
return | System |
public LameMP3FileWriter ( string outFileName, |
||
outFileName | string | Name of file to create |
format | Input WaveFormat | |
bitRate | int | Output bit rate in kbps |
return | System |
public Read ( byte buffer, int offset, int count ) : int | ||
buffer | byte | |
offset | int | |
count | int | |
return | int |
public Seek ( long offset, SeekOrigin origin ) : long | ||
offset | long | Seek offset |
origin | SeekOrigin | Seek origin |
return | long |
public SetLength ( long value ) : void | ||
value | long | Length value |
return | void |
public Write ( byte buffer, int offset, int count ) : void | ||
buffer | byte | Source buffer |
offset | int | Offset of data in buffer |
count | int | Length of data |
return | void |