Declaration
procedure DVDPlayAt(Title: integer; Chapter: integer);
procedure DVDPlayAt(Title: integer; Hours, Minutes, Seconds, Frames: integer);
Description
Starts playback from the beginning of the specified chapter of the specified title.
You can access the number of Chapters and Titles (and the current position) by calling
DVDGetProperty.
The second overload allows you to specify the exact time inside the specified title.
// playes chapter 1 in title 5
ImageEnView1.IO.DShowParams.DVDPlayAt(5, 1);
// playes title 1, after 10 minutes
ImageEnView1.IO.DShowParams.DVDPlayAt(1, 0, 10, 0, 0);
| Demos\Display\VMR_DVD\VMR_DVD.dpr |