OpenDVD
Delphi
function OpenDVD: Boolean;
C++Builder
bool __fastcall OpenDVD();
C#
public bool OpenDVD();
VB.NET
Public Function OpenDVD() As Boolean
C++/Qt
BOOL OpenDVD ();
used to open a DVD in playback mode. If DVDTitle = 0, the DVD menu appears when opening the DVD playback. To start directly the playback of a DVD title, set DVDTitle with the number of the title.
E.g.:
VideoGrabber.PlayerFileName = "D:VIDEO_TS" VideoGrabber.DVDTitle = 0 VideoGrabber.OpenDVD ()
will open the DVD menu.
VideoGrabber.PlayerFileName = "E:VIDEO_TS" VideoGrabber.DVDTitle = 1 VideoGrabber.OpenDVD ()
will start playing directly the 1st title.