圖文介紹版
http://www.dotblogs.com.tw/larrynung/archive/2009/03/01/7325.aspx
引自 :http://blog.udn.com/jstw/3636717
加入連續 媒體至PLAYLIST中
AxWindowsMediaPlayer1.currentPlaylist.appendItem(AxWindowsMediaPlayer1.newMedia("D:\1.WMV"))
AxWindowsMediaPlayer1.currentPlaylist.appendItem(AxWindowsMediaPlayer1.newMedia("D:\2.AVI"))
之後使用AxWindowsMediaPlayer1.Ctlcontrols.play() 來播放
'禁止使用右鍵(功能鍵)
axWindowsMediaPlayer1.enableContextMenu = false
'設置播放圖像大小
axWindowsMediaPlayer1.DisplaySize
1-MpDefaultSize 原始大小
2-MpHalfSize 原始大小的一半
3-MpDoubleSize 原始大小的兩倍
4-MpFullScreen 全屏
5-MpOneSixteenthScreen 屏幕大小的1/16
6-MpOneFourthScreen 屏幕大小的1/4
7-MpOneHalfScreen 屏幕大小的1/2
AxWindowsMediaPlayer媒體文件主要方法屬性
屬性/方法名: 說明:
[基本屬性]
URL:String; 指定媒體位置,本機或網絡地址
uiMode:String; 播放器界面模式,可為Full, Mini, None, Invisible
playState:integer; 播放狀態,1=停止,2=暫停,3=播放,6=正在緩衝,9=正在連接,10=準備就緒
enableContextMenu:Boolean; 啟用/禁用右鍵菜單
fullScreen:boolean; 是否全屏顯示
//播放器基本控制
Ctlcontrols.play; 播放
Ctlcontrols.pause; 暫停
Ctlcontrols.stop; 停止
Ctlcontrols.currentPosition:double; 當前進度
Ctlcontrols.currentPositionString:string; 當前進度,字符串格式。如「00:23」
Ctlcontrols.fastForward; 快進
Ctlcontrols.fastReverse; 快退
Ctlcontrols.next; 下一曲
Ctlcontrols.previous; 上一曲
[settings] wmp.settings //播放器基本設置
settings.volume:integer; 音量,0-100
settings.autoStart:Boolean; 是否自動播放
settings.mute:Boolean; 是否靜音
settings.playCount:integer; 播放次數
[currentMedia] wmp.currentMedia //當前媒體屬性
currentMedia.duration:double; 媒體總長度
currentMedia.durationString:string; 媒體總長度,字符串格式。如「03:24」
currentMedia.getItemInfo(const string); 獲取當前媒體信息"Title"=媒體標題,"Author"=藝術家,"Copyright"=版權信息,"Description"=媒體內容描述, "Duration"=持續時間(秒),"FileSize"=文件大小,"FileType"=文件類型,"sourceURL"=原始地址
currentMedia.setItemInfo(const string); 通過屬性名設置媒體信息
currentMedia.name:string; 同 currentMedia.getItemInfo("Title")
[currentPlaylist] wmp.currentPlaylist //當前播放列表屬性
currentPlaylist.count:integer; 當前播放列表所包含媒體數
currentPlaylist.Item[integer]; 獲取或設置指定項目媒體信息,其子屬性同wmp.currentMedia
axWindowsMediaPlayer1.currentMedia.sourceURL; //獲取正在播放的媒體文件的路徑
axWindowsMediaPlayer1.currentMedia.name; //獲取正在播放的媒體文件的名稱
axWindowsMediaPlayer1.Ctlcontrols.Play 播放
axWindowsMediaPlayer1.Ctlcontrols.Stop 停止
axWindowsMediaPlayer1.Ctlcontrols.Pause 暫停
axWindowsMediaPlayer1.Ctlcontrols.PlayCount 文件播放次數
axWindowsMediaPlayer1.Ctlcontrols.AutoRewind 是否循環播放
axWindowsMediaPlayer1.Ctlcontrols.Balance 聲道
axWindowsMediaPlayer1.Ctlcontrols.Volume 音量
axWindowsMediaPlayer1.Ctlcontrols.Mute 靜音
axWindowsMediaPlayer1.Ctlcontrols.EnableContextMenu 是否允許在控件上點擊鼠標右鍵時彈出快捷菜單
axWindowsMediaPlayer1.Ctlcontrols.AnimationAtStart 是否在播放前先播放動畫
axWindowsMediaPlayer1.Ctlcontrols.ShowControls 是否顯示控件工具欄
axWindowsMediaPlayer1.Ctlcontrols.ShowAudioControls 是否顯示聲音控制按鈕
axWindowsMediaPlayer1.Ctlcontrols.ShowDisplay 是否顯示數據文件的相關信息
axWindowsMediaPlayer1.Ctlcontrols.ShowGotoBar 是否顯示Goto欄
axWindowsMediaPlayer1.Ctlcontrols.ShowPositionControls 是否顯示位置調節按鈕
axWindowsMediaPlayer1.Ctlcontrols.ShowStatusBar 是否顯示狀態欄
axWindowsMediaPlayer1.Ctlcontrols.ShowTracker 是否顯示進度條
axWindowsMediaPlayer1.Ctlcontrols.FastForward 快進
axWindowsMediaPlayer1.Ctlcontrols.FastReverse 快退
axWindowsMediaPlayer1.Ctlcontrols.Rate 快進/快退速率
axWindowsMediaPlayer1.AllowChangeDisplaySize 是否允許自由設置播放圖像大小
http://www.dotblogs.com.tw/larrynung/archive/2009/03/01/7325.aspx
引自 :http://blog.udn.com/jstw/3636717
加入連續 媒體至PLAYLIST中
AxWindowsMediaPlayer1.currentPlaylist.appendItem(AxWindowsMediaPlayer1.newMedia("D:\1.WMV"))
AxWindowsMediaPlayer1.currentPlaylist.appendItem(AxWindowsMediaPlayer1.newMedia("D:\2.AVI"))
之後使用AxWindowsMediaPlayer1.Ctlcontrols.play() 來播放
'禁止使用右鍵(功能鍵)
axWindowsMediaPlayer1.enableContextMenu = false
'設置播放圖像大小
axWindowsMediaPlayer1.DisplaySize
1-MpDefaultSize 原始大小
2-MpHalfSize 原始大小的一半
3-MpDoubleSize 原始大小的兩倍
4-MpFullScreen 全屏
5-MpOneSixteenthScreen 屏幕大小的1/16
6-MpOneFourthScreen 屏幕大小的1/4
7-MpOneHalfScreen 屏幕大小的1/2
AxWindowsMediaPlayer媒體文件主要方法屬性
屬性/方法名: 說明:
[基本屬性]
URL:String; 指定媒體位置,本機或網絡地址
uiMode:String; 播放器界面模式,可為Full, Mini, None, Invisible
playState:integer; 播放狀態,1=停止,2=暫停,3=播放,6=正在緩衝,9=正在連接,10=準備就緒
enableContextMenu:Boolean; 啟用/禁用右鍵菜單
fullScreen:boolean; 是否全屏顯示
//播放器基本控制
Ctlcontrols.play; 播放
Ctlcontrols.pause; 暫停
Ctlcontrols.stop; 停止
Ctlcontrols.currentPosition:double; 當前進度
Ctlcontrols.currentPositionString:string; 當前進度,字符串格式。如「00:23」
Ctlcontrols.fastForward; 快進
Ctlcontrols.fastReverse; 快退
Ctlcontrols.next; 下一曲
Ctlcontrols.previous; 上一曲
[settings] wmp.settings //播放器基本設置
settings.volume:integer; 音量,0-100
settings.autoStart:Boolean; 是否自動播放
settings.mute:Boolean; 是否靜音
settings.playCount:integer; 播放次數
[currentMedia] wmp.currentMedia //當前媒體屬性
currentMedia.duration:double; 媒體總長度
currentMedia.durationString:string; 媒體總長度,字符串格式。如「03:24」
currentMedia.getItemInfo(const string); 獲取當前媒體信息"Title"=媒體標題,"Author"=藝術家,"Copyright"=版權信息,"Description"=媒體內容描述, "Duration"=持續時間(秒),"FileSize"=文件大小,"FileType"=文件類型,"sourceURL"=原始地址
currentMedia.setItemInfo(const string); 通過屬性名設置媒體信息
currentMedia.name:string; 同 currentMedia.getItemInfo("Title")
[currentPlaylist] wmp.currentPlaylist //當前播放列表屬性
currentPlaylist.count:integer; 當前播放列表所包含媒體數
currentPlaylist.Item[integer]; 獲取或設置指定項目媒體信息,其子屬性同wmp.currentMedia
axWindowsMediaPlayer1.currentMedia.sourceURL; //獲取正在播放的媒體文件的路徑
axWindowsMediaPlayer1.currentMedia.name; //獲取正在播放的媒體文件的名稱
axWindowsMediaPlayer1.Ctlcontrols.Play 播放
axWindowsMediaPlayer1.Ctlcontrols.Stop 停止
axWindowsMediaPlayer1.Ctlcontrols.Pause 暫停
axWindowsMediaPlayer1.Ctlcontrols.PlayCount 文件播放次數
axWindowsMediaPlayer1.Ctlcontrols.AutoRewind 是否循環播放
axWindowsMediaPlayer1.Ctlcontrols.Balance 聲道
axWindowsMediaPlayer1.Ctlcontrols.Volume 音量
axWindowsMediaPlayer1.Ctlcontrols.Mute 靜音
axWindowsMediaPlayer1.Ctlcontrols.EnableContextMenu 是否允許在控件上點擊鼠標右鍵時彈出快捷菜單
axWindowsMediaPlayer1.Ctlcontrols.AnimationAtStart 是否在播放前先播放動畫
axWindowsMediaPlayer1.Ctlcontrols.ShowControls 是否顯示控件工具欄
axWindowsMediaPlayer1.Ctlcontrols.ShowAudioControls 是否顯示聲音控制按鈕
axWindowsMediaPlayer1.Ctlcontrols.ShowDisplay 是否顯示數據文件的相關信息
axWindowsMediaPlayer1.Ctlcontrols.ShowGotoBar 是否顯示Goto欄
axWindowsMediaPlayer1.Ctlcontrols.ShowPositionControls 是否顯示位置調節按鈕
axWindowsMediaPlayer1.Ctlcontrols.ShowStatusBar 是否顯示狀態欄
axWindowsMediaPlayer1.Ctlcontrols.ShowTracker 是否顯示進度條
axWindowsMediaPlayer1.Ctlcontrols.FastForward 快進
axWindowsMediaPlayer1.Ctlcontrols.FastReverse 快退
axWindowsMediaPlayer1.Ctlcontrols.Rate 快進/快退速率
axWindowsMediaPlayer1.AllowChangeDisplaySize 是否允許自由設置播放圖像大小
全站熱搜
留言列表