ltmmConvertCtrl.SourceVideoType Example for Visual Basic

'The method will display the video and audio format info
Private Sub FormatInfo(Convert As ltmmConvertCtrl) 
    txtInfo.Text = ""
    txtInfo.Text = "Source video type " + Convert.SourceVideoType
    txtInfo.Text = txtInfo.Text + "Source audio type " + Convert.SourceAudioType
    txtInfo.Text = txtInfo.Text + "Source video FOURCC" + CStr(Convert.SourceVideoFOURCC
    txtInfo.Text = txtInfo.Text + "Source audio format " + CStr(Convert.SourceAudioFormat
End Sub