StartSplitFromWasapiLoopbackDevice method |
|
Remarks
Starts a new recording session from the given WASAPI loopback device and splits incoming sound in left and right channels.
The given WASAPI loopback device must be previously started through the WASAPI.DeviceStartExcusive or WASAPI.DeviceStartShared methods. You can know if a WASAPI device is already started through the WASAPI.DeviceIsStarted method.
Calling this method will cause the control to fire a RecordingStarted event. The recording session can be stopped at any time through a call to the Stop method.
This method is only intended for usage with Windows Vista and later versions.
For further details about the use of WASAPI see the WASAPI object and the How to manage audio flow through WASAPI tutorial.
For details about the encoding format and parameters applied during recording see the How to perform a recording session section.
Syntax
[Visual Basic] Public Function StartSplitFromWasapiLoopbackDevice ( nLoopbackDevice as Int32, strOutputPathLeft as String, strOutputPathRight as String ) as enumErrorCodes |
[C#] public enumErrorCodes StartSplitFromWasapiLoopbackDevice ( Int32 nLoopbackDevice, string strOutputPathLeft, string strOutputPathRight ); |
[C++] public: enumErrorCodes StartSplitFromWasapiLoopbackDevice ( Int32 nLoopbackDevice, string strOutputPathLeft, string strOutputPathRight ); |
Parameter |
Description |
|
|
nLoopbackDevice |
Number representing the zero-based index of the WASAPI loopback device of interest. The total number of available WASAPI loopback devices can be obtained using the WASAPI.DeviceGetCount method having the nDeviceType parameter set to WASAPI_DEVICE_TYPE_LOOPBACK..
If the multimedia engine shouldn't find any enabled or valid input or output device, the container application would be notified through the WarnNoInputDevice and WarnNoOutputDevice events. |
strOutputPathLeft |
String representing the absolute pathname of the destination file that will contain the left channel of recorded data. If this pathname should contain invalid characters, they would be automatically changed into an underscore '_' character. |
strOutputPathRight |
String representing the absolute pathname of the destination file that will contain the right channel of recorded data. If this pathname should contain invalid characters, they would be automatically changed into an underscore '_' character. |
Return value
Value |
Meaning |
|
|
Negative value |
An error occurred. Check the LastError property value in order to see the last error. |
enumErrorCodes.ERR_NOERROR (0) |
The method call was successful. |