Copyright © 2006 - 2008 MultiMedia Soft 
Return to Table of contents  
 
 
RecordingSize event 
 
Remarks 
 
Occurs, during a recording session, to notify the amount of recorded PCM bytes. 
 
This event is useful when recording PCM data in memory or with the purpose of saving recorded data into a destination WAV file. 
 
Note that, when recording and encoding directly into MP3, OGG Vorbis or WMA formats, the reported size doesn't match the effective amount of memory occupied by the recording system because, in this case, recorded data are encoded directly into the destination file and immediately discarded from memory. 
 
For further details see the How to perform a recording session section. 
 
Syntax 
 
[Visual Basic] 
Public Event RecordingSize As RecordingSizeEventHandler
 
[C#] 
public event RecordingSizeEventHandler RecordingSize;
 
[C++] 
public: __event RecordingSizeEventHandler* RecordingSize;
 
 
Event Data 
 
The event handler receives an argument of type RecordingSizeEventArgs. 
 
RecordingSizeEventArgs members
Description
 
 
nDataSize
Number representing the amount of memory bytes occupied by recorded PCM data.
 
 
 
 
 
 
 
 
 
Copyright © 2006 - 2008 MultiMedia Soft 
Return to Table of contents