Skip to content

ASFProfiles

property, read-only

Delphi
property ASFProfiles: string read GetASFProfiles;
C++Builder
__property System::UnicodeString ASFProfiles = {read=GetASFProfiles};
C#
public string ASFProfiles { get; }
VB.NET
Public ReadOnly Property ASFProfiles As String
C++/Qt
wchar_t *GetASFProfiles ();

Returns the ASF profiles available on the current platform.

Remarks

Used to retrieve the ASF profiles available on the current platform.

The ASFProfile property is the index in this list of the current ASF profile.

Selecting an ASF profile make it possible to choose the streaming format (video size, bit rate, etc...).

This list can be assigned to a TStringList, e.g.:

...

StringList := TStringList.Create;

StringList.Text := VideoGrabber.ASFProfiles;

...