Method function ALDSAudioPlayer.TALDSAudioPlayer.Open() : Boolean
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: TALDSAudioPlayer
Contents |
Syntax
Delphi:
function Open() : Boolean;
C++ Builder:
bool __fastcall Open();
Visual C++ (MFC):
bool Open();
Summary
Opens the selected audio file.
Description
Use this method to open the selected audio file or connection and builds the DirectShow filter graph. In most cases you will not need to call this procedure. The advantage of calling this before starting the capture is that the capture will start much faster if the device is already open.
Delphi example:
ALDSAudioPlayer1.Open;
C++ Builder example:
ALDSAudioPlayer1->Open();
Visual C++(MFC/Win32) example:
ALDSAudioPlayer1.Open();
C# Example:
dsAudioPlayer1.Open();