目前网络电视的格式大多为P2P格式,系统自带的控件“WMPlayer.OCX”放不了!可否创建一个P2P格式的控件,如图,让播放器支持P2P格式呢?
本人已创建一个暴风影音的控件(如图),但不知更多的参数!
#include <GUIConstants.au3>
#Region ### START Koda GUI section ### Form=
$AForm1 = GUICreate("AForm1", 360, 347, 193, 125)
$Obj1 = ObjCreate("MPS.StormPlayer.1")
$GUIActiveX = GUICtrlCreateObj( $Obj1,15, 15 ,320, 303)
$Obj1.url="http://127.0.0.1:18988/ps/1216470079/1821/广东珠江频道.asf"
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
EndSwitch
WEnd
|