Get number of audio streams available for a title.
Public Function GetAudioStreamCount() as Integer
No Parameter
Return Value Return the number of audio streams available for a title.
Example
Visual Basic Syntax iCount = DVDPlayer1.GetAudioStreamCount() ListAudiolang.Clear For i = 0 To iCount - 1 ListAudiolang.AddItem DVDPlayer1.GetAudioStreamName(i) Next