DVD Player ActiveX Control

GetAudioStreamName  

 

Get the audio stream name for specific index.

Public Function GetAudioStreamName(
   ByVal iIndex As Integer
) as String

 

Parameter
the index of Audio Stream. First index is zero.

Return Value
Return the audio stream name.

Example

   

Visual Basic Syntax
iCount = DVDPlayer1.GetAudioStreamCount()
ListAudiolang.Clear
For i = 0 To iCount - 1
ListAudiolang.AddItem DVDPlayer1.GetAudioStreamName(i)
Next