思路是先取得文件的類型,并根據類型選擇不同的網頁播放器代碼..三下五去二.....同時為了代碼在以后的復用性,寫成了通用的調用函數.方便以后在別的系統中調用..
現發布源代碼如下:
復制代碼 代碼如下:
Sub SelPlay(strUrl,strWidth,StrHeight)
Dim Exts,isExt
If strUrl > "" Then
isExt = LCase(Mid(strUrl,InStrRev(strUrl, ".")+1))
Else
isExt = ""
End If
Exts = "avi,wmv,asf,mov,rm,ra,ram"
If Instr(Exts,isExt)=0 Then
Response.write "非法視頻文件"
Else
Select Case isExt
Case "avi","wmv","asf","mov"
Response.write "EMBED id=MediaPlayer src="strUrl" width="strWidth" height="strHeight" loop=""false"" autostart=""true"">/EMBED>"
Case "mov","rm","ra","ram"
Response.Write "OBJECT height="strHeight" width="strWidth" classid=clsid:CFCDAA03-8BE4-11cf-B84B-0020AFBBCCFA>"
Response.Write "PARAM NAME=""_ExtentX"" VALUE=""12700"">"
Response.Write "PARAM NAME=""_ExtentY"" VALUE=""9525"">"
Response.Write "PARAM NAME=""AUTOSTART"" VALUE=""-1"">"
Response.Write "PARAM NAME=""SHUFFLE"" VALUE=""0"">"
Response.Write "PARAM NAME=""PREFETCH"" VALUE=""0"">"
Response.Write "PARAM NAME=""NOLABELS"" VALUE=""0"">"
Response.Write "PARAM NAME=""SRC"" VALUE="""strUrl""">"
Response.Write "PARAM NAME=""CONTROLS"" VALUE=""ImageWindow"">"
Response.Write "PARAM NAME=""CONSOLE"" VALUE=""Clip"">"
Response.Write "PARAM NAME=""LOOP"" VALUE=""0"">"
Response.Write "PARAM NAME=""NUMLOOP"" VALUE=""0"">"
Response.Write "PARAM NAME=""CENTER"" VALUE=""0"">"
Response.Write "PARAM NAME=""MAINTAINASPECT"" VALUE=""0"">"
Response.Write "PARAM NAME=""BACKGROUNDCOLOR"" VALUE=""#000000"">"
Response.Write "/OBJECT>"
Response.Write "BR>"
Response.Write "OBJECT height=32 width="strWidth" classid=clsid:CFCDAA03-8BE4-11cf-B84B-0020AFBBCCFA>"
Response.Write "PARAM NAME=""_ExtentX"" VALUE=""12700"">"
Response.Write "PARAM NAME=""_ExtentY"" VALUE=""847"">"
Response.Write "PARAM NAME=""AUTOSTART"" VALUE=""0"">"
Response.Write "PARAM NAME=""SHUFFLE"" VALUE=""0"">"
Response.Write "PARAM NAME=""PREFETCH"" VALUE=""0"">"
Response.Write "PARAM NAME=""NOLABELS"" VALUE=""0"">"
Response.Write "PARAM NAME=""CONTROLS"" VALUE=""ControlPanel,StatusBar"">"
Response.Write "PARAM NAME=""CONSOLE"" VALUE=""Clip"">"
Response.Write "PARAM NAME=""LOOP"" VALUE=""0"">"
Response.Write "PARAM NAME=""NUMLOOP"" VALUE=""0"">"
Response.Write "PARAM NAME=""CENTER"" VALUE=""0"">"
Response.Write "PARAM NAME=""MAINTAINASPECT"" VALUE=""0"">"
Response.Write "PARAM NAME=""BACKGROUNDCOLOR"" VALUE=""#000000"">"
Response.Write "/OBJECT>"
End Select
End If
End Sub
調用方式:
復制代碼 代碼如下:
Call SelPlay(DvUrl,280,220)
其實更好的代碼,在一些比較不錯的在線播放器源碼等,可以參考下,如:馬克斯等視頻播放系統。
您可能感興趣的文章:- 超級REAL視頻播放器
- 網頁視頻播放器程序代碼(通用代碼)
- flvplayer.swf flv視頻播放器使用方法
- vbs sendKeys 16進制的結合使用(打開IE,靜音,打開播放器等)
- (jsp/html)網頁上嵌入播放器(常用播放器代碼整理)
- JS HTML5 音樂天氣播放器(Ajax獲取天氣信息)
- android暫?;蛲V蛊渌魳凡シ牌鞯牟シ艑崿F代碼
- android webvie指定視頻播放器播放網站視頻
- asp.net實現在線音樂播放器示例
- PHP實現使用優酷土豆視頻地址獲取swf播放器分享地址
- Flex播放器(實現播放、緩沖進度條和音頻曲線顯示)
- 基于C#的音樂播放器主Form實現代碼
- javascript實現簡單的html5視頻播放器
- 基于Flowplayer打造一款免費的WEB視頻播放器附源碼