工具使用:

==========WindowsMediaPlayer的常用属性和方法===========

[基本属性]
URL:string                            可以指定媒体位置
enableContextMenu:Boolean 显示/不显示播放位置的右键菜单
fullScreen:boolean   全屏显示
stretchToFit:boolean   非全屏状态时是否伸展到最佳大小
uMode:string    播放器的模式,full:有下面的控制条; none:只有播放部份没有控制条
playState:integer   当前控件状态,状态变化时会触发OnStatusChange事件

[controls]
可通过WindowsMediaPlayer.controls对播放器进行控制并取得相关的一些信息:
controls.play;       播放
controls.stop;       停止
controls.pause;      暂停
controls.currentPosition:Double 当前播放进度
controls.currentPositionString:string 时间格式的字符串 "0:32"

[currentMedia]
可以通过WindowsMediaPlayer.currentMedia取得当前媒体的信息
currentMedia.duration  Double 总长度
currentMedia.durationString 时间格式的字符串 "4:34"

[settings]
可以通过WindowsMediaPlayer.settings对播放器进行设置,包括音量和声道等。
settings.volume:integer 音量 (0-100)
settings.balance:integer 声道,通过它应该可以进行立体声、左声道、右声道的控制。


Media Player Player.playState事件
Value         State                 Description
0         (未定义)Undefined         Windows Media Player is in an undefined state.
1         (停止)  Stopped         Playback of the current media item is stopped.
2         (暂停) Paused                 Playback of the current media item is paused. When a media item is paused, resuming playback begins from the same location.
3         (播放)Playing   The current media item is playing.
4         (快进)ScanForward         The current media item is fast forwarding.
5         (快退)ScanReverse         The current media item is fast rewinding.
6         (缓冲)Buffering         The current media item is getting additional data from the server.
7         (建立连接)Waiting         Connection is established, but the server is not sending data. Waiting for session to begin.
8         (播放结束)MediaEnded         Media item has completed playback.
9         (转换下一个节目)Transitioning         Preparing new media item.
10        (准备就绪)Ready                 Ready to begin playing.
11        (重新连接) Reconnecting         Reconnecting to stream.

posted on 2007-10-29 15:30  tenero  阅读(616)  评论(0编辑  收藏  举报