Viscom Software Screen2Video ActiveX Control

AudioMixAudioDevice2InputPin Property

Description:   

Set the mixing audio device's input pin (For XP computer only). First you need set AudioMixWithSpeaker property=true. If you set AudioInputPin property =0, it is Stereo Mix.
If your Microphone audio inputpin index is 1, you need set AudioMixAudioDevice2InputPin property =1.
If you use Window 7 or vista, you do not need set this value.

Usage:   

Screen2Video1.AudioMixAudioDevice2InputPin[= value]

 

Data Type:   

long

Example:   

This Visual Basic example 

Private Sub Capture_Click()      
        Screen2Video1.AudioDevice=0
        Screen2Video1.AudioInputPin=0
        Screen2Video1.AudioMixWithSpeaker=true
        Screen2Video1.AudioMixAudioDevice2InputPin = 1
        Screen2Video1.Start

End Sub