IltmmDVDControl::PlayPeriodInTitleAutoStop

#include "ltmm.h"

C Syntax

HRESULT IltmmDVDControl_PlayPeriodInTitleAutoStop(pDVD, Title The name for a group of related video files (called "Chapters") on your DVD. For example, for a DVD called "My Summer Vacation," you might have the titles "Water Skiing," "New Friends," and "Hiking." For each of those titles, you might have one or more different video files., StartTime, StopTime)

C++ Syntax

HRESULT PlayPeriodInTitleAutoStop(Title, StartTime, StopTime)

 

IltmmDVDControl *pDVD;

/* pointer to an interface */

long Title;

/* title */

long StartTime;

/* start time */

long StopTime;

/* stop time */

Starts playback from the specified start time and runs until the specified end time in the specified title.

Parameter

Description

pDVD

Pointer to an IltmmDVDControl interface.

Title

The title from which to play the specified period. Possible values range from 1 to 99.

StartTime

The time at which to start playing This value is a ltmmDVD_HMSF_TIMECODE structure. Refer to the MSDN link below for more information.

StopTime

The time at which to stop playing This value is a ltmmDVD_HMSF_TIMECODE structure. Refer to the MSDN link below for more information.

Returns

S_OK

The function ran successfully.

<> S_OK

An error occurred. Refer to the Error Codes or the HRESULT error codes in the DirectShow documentation.

Comments

This function does not support command synchronization.

The StartTime parameter must come before the StopTime parameter. If StopTime precedes StartTime, the function will return an error. For more information, refer to the MSDN link below.

For more detailed information, refer to the Microsoft documentation for IDvdControl2::PlayPeriodInTitleAutoStop.

Required DLLs and Libraries

LTMM

For a listing of the exact DLLs and Libraries needed, based on the toolkit version, refer to Files To Be Included With Your Application.

Platforms

Win32, x64

See Also

Elements:

IltmmDVDControl interface, IltmmDVDControl::Pause, IltmmDVDControl::Stop, IltmmDVDControl::Resume, IltmmDVDControl::PlayAtTime, IltmmDVDControl::PlayAtTimeInTitle, IltmmDVDControl::PlayBackwards, IltmmDVDControl::PlayChapter, IltmmDVDControl::PlayChapterInTitle, IltmmDVDControl::PlayChaptersAutoStop, IltmmDVDControl::PlayForwards, IltmmDVDControl::PlayNextChapter, IltmmDVDControl::PlayPrevChapter, IltmmDVDControl::PlayTitle, IltmmDVDControl::ReplayChapter, IltmmDVDControl::StillOff

Topics:

Multimedia Function Group

Example

For a C example, refer to IltmmDVDControl::GetButtonAtPosition Example for C.

For a C++ example, refer to IltmmDVDControl::GetButtonAtPosition Example for C++.