Property VLDSVideoPlayer.TVLDSVideoPlayer.AudioCodec
From Mitov Wiki Doc
This is a Beta Read Only version of this page. Please review and send recommendations to mitov@mitov.com. We will enable the editing as soon as we are happy with the overall Wiki site.
Class: TVLDSVideoPlayer
Contents |
Syntax
Delphi:
property AudioCodec : Cardinal read GetAudioCodec;
C++ Builder:
__property unsigned int AudioCodec = { read=GetAudioCodec };
Summary
The FourCC code of the audio codec used to encode the file.
Description
Use this property to get the FourCC code of the audio codec
used to encode the file.
Delphi example:
AValue : Cardinal; AValue := VLDSVideoPlayer1.AudioCodec;
C++ Builder example:
unsigned int AValue = VLDSVideoPlayer1->AudioCodec;
Visual C++(MFC) example:
unsigned int AValue = VLDSVideoPlayer1.AudioCodec;
Visual C++/CLI example:
unsigned int value = dsVideoPlayer1->AudioCodec;
C# example:
UInt32 value = dsVideoPlayer1.AudioCodec;
VB example:
Dim value As UInt32 = DSVideoPlayer1.AudioCodec