windowsmediaplay控件不是delphi自带哪个,如何播放停止,急用,在线等!救我啊!

解决方案 »

  1.   

    mediaplay.open;
    mediaplay.play;//播放
    mediaPlay.stop;//停止
      

  2.   

    mediaplayer1.pause;//暂停
    mediaplayer1.stop;//停止
    mediaplayer1.play;//播放
      

  3.   

    mediaplayer1.open ;//
    mediaplayer1.filename='你要播放的东东'
    mediaplayer1.pause;//暂停
    mediaplayer1.stop;//停止
    mediaplayer1.play;//播放
      

  4.   

    windows,ediaplayer 9的话
    mediaplayer.controls.play;
    mediaplayer.controls.pause;
    ...
      

  5.   

    TMediaPlayer controls devices that provide a Media Control Interface (MCI) driver. UnitMPlayerDescriptionThe TMediaPlayer component includes a set of buttons (Play, Stop, Eject, and so on) that control a multimedia device such as a CD-ROM drive, MIDI sequencer, or VCR. A multimedia device may be hardware or software.The media player component contains of multiple buttons. These buttons can be clicked with the mouse, but are not separate objects or button components.Button Value ActionPlay btPlay Plays the media player
    Pause btPause Pauses playing or recording. If already paused when clicked, resumes playing or recording.
    Stop btStop Stops playing or recording
    Next btNext Skips to the next track, or to the end if the medium doesn抰 use tracks
    Prev btPrev Skips to the previous track, or to the beginning if the medium doesn抰 use tracks
    Step btStep Moves forward a number of frames
    Back btBack Moves backward a number of framesRecord btRecord Starts recording
    Eject btEject Ejects the mediumThe multimedia device is played, paused, stopped, and so on when the user clicks the corresponding button on the TMediaPlayer component. The device can also be controlled by the control methods that correspond to the buttons (Play, Pause, Stop, Next, Previous, Step, Back, StartRecording, and Eject).The type of multimedia device (such as dtWaveAudio or dtVideodisc) is specified by the DeviceType property. If the device stores its media in a file, the name of the media file is specified by the FileName property. If DeviceType is dtAutoSelect, the media player attempts to determine the type of device from the extension of the file specified by FileName.To have the media player attempt to open the device specified by DeviceType automatically when the media player component is created at runtime, set the AutoOpen property to true.
      

  6.   

    mediaplayer1.open ;//
    mediaplayer1.filename='你要播放的东东'
    mediaplayer1.pause;//暂停
    mediaplayer1.stop;//停止
    mediaplayer1.play;//播放
      

  7.   

    mediaplayer1.filename='文件名'
    mediaplayer1.open ;//打开设备
    mediaplayer1.stop;
    mediaplayer1.play;