| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- <HTML>
- <HEAD>
- <TITLE>MyActiveX</TITLE>
- <script type="text/javascript">
-
- function config(){
- var obj = document.getElementById("EasyPlayerOcx");
- var cache = document.getElementById("cache").value;
- var playsound = document.getElementById("playsound").value;
- var showtoscale= document.getElementById("showtoscale").value;
- var showsatic = document.getElementById("showsatic").value;
- obj.Config(cache, playsound, showtoscale, showsatic);
-
- //alert(cache+";"+playsound+";"+showtoscale+";"+showsatic);
- }
- function startplay(){
- var obj = document.getElementById("EasyPlayerOcx");
- var url = document.getElementById("url").value;
- var rendertype = document.getElementById("rendertype").value;
- var name= document.getElementById("name").value;
- var password = document.getElementById("password").value;
- var hardDecode = document.getElementById("hardwareDecode").value;
-
- obj.Start(url, rendertype, name, password,hardDecode);
- config();
- //alert(url+";"+rendertype+";"+name+";"+password);
- }
- function stopplay(){
- //alert("Close()!!!!!");
- var obj = document.getElementById("EasyPlayerOcx");
- obj.Close();
- }
-
- </script>
- </HEAD>
- <BODY>
- <center>
- MyActiveX Example
- <p></p>
- <!--
- <OBJECT ID="EasyPlayerOcx" WIDTH=100% HEIGHT=100%
- CLASSID="CLSID:1EE1C648-F4A9-42F9-9AA7-2C8E3AF7B7FD">
- </OBJECT>
- -->
- <object id="EasyPlayerOcx" ID="EasyPlayerOcx" type="application/x-easyplayerplugin" width="640" height="480">
- </object>
- 界面信息<br>
- RTSP URL:<input type="text" name="url" id="url" VALUE="rtsp://127.0.0.1:554/stream0.sdp"/>
- RenderFormat:<input type="text" name="rendertype" id="rendertype" VALUE="0"/>
- 用户名:<input type="text" name="name" id="name" size=25 value="admin"/>
- 密码:<input type="text" name="password" id="password" size=25 value="admin"/>
- 是否使用硬件解码:<input type="text" name="hardwareDecode" id="hardwareDecode" size=25 value="0"/>
- <br>
- 缓存:<input type="text" name="cache" id="cache" size=25 value ="3"/>
- 播放声音:<input type="text" name="playsound" id="playsound" size=25 value ="1"/>
- 按比例显示:<input type="text" name="showtoscale" id="showtoscale" size=25 value ="1"/>
- 显示码率信息:<input type="text" name="showsatic" id="showsatic" size=25 value ="1"/><br>
- <button type="button" onclick="startplay();">Start</button>
- <button type="button" onclick="stopplay();">Stop</button>
- </center>
- </BODY>
- </HTML>
|