How to Perform Auto Repeat as Media Player Does (124185)



The information in this article applies to:

  • Microsoft Video for Windows Development Kit 1.1
  • Microsoft Platform Software Development Kit (SDK) 1.0, when used with:
    • Microsoft Windows 3.1
    • Microsoft Windows 3.11
    • Microsoft Windows NT Server 3.1
    • Microsoft Windows NT Server 3.5
    • Microsoft Windows NT Server 3.51
    • Microsoft Windows NT Server 4.0
    • Microsoft Windows NT Workstation 3.1
    • Microsoft Windows NT Workstation 3.5
    • Microsoft Windows NT Workstation 3.51
    • Microsoft Windows NT Workstation 4.0

This article was previously published under Q124185
The Media Player (MPLAYER.EXE) included with Microsoft Windows and Microsoft Windows NT (MPLAY32.EXE) provides an auto-repeat option that automatically repeats the playback of a multimedia file. You can incorporate this functionality into your application on Digital Video devices by using an extension to the standard Media Control Interface (MCI) commands as follows:

  • When calling the mciSendString() function, add the word "repeat" to the play command, as in this example:
    mciSendString("play mov notify repeat", NULL, 0, hWnd);
    			
  • When calling the mciSendCommand() function, set the play flag MCI_DGV_PLAY_REPEAT. For example, to add auto repeat functionality to the MOVPLAY sample included with the Video for Windows DK, add the following line to the playMovie() function in MOVPLAY1.C, right before the mciSendCommand() function call:
    dwFlags |= MCI_DGV_PLAY_REPEAT;
    			
"Digital Video Command Set for the Media Control Interface" documents the Digital Video MCI extensions. It is available on the Microsoft Developer Network (MSDN) CD. Look for it in the Specifications section of the CD contents, under "Digital Video MCI Specification." You can also search the CD using the word MCI_DGV_PLAY_REPEAT for more information about that flag.

Modification Type:MinorLast Reviewed:7/11/2005
Keywords:KB124185