发布网友 发布时间:2024-10-23 22:36
共2个回答
热心网友 时间:2024-10-25 03:22
下面我们加入简单的JavaScript 代码用来控制视频的播放。 </P><P>function play(filename){</P><P>top.document.all("iVideo").src = "video.php?src="+filename;</P><P>} // iVideo 是刚刚定义的IFRAME 的标识符</P><P> 我们可以使用javascript控制RealPlayer插件更复杂的功能,如提取视频的长宽、测试用户的网络速率、自定义播放事件等等。关于RealPlayer ActiveX开发的具体细节,请参阅RealPlayer官方网站 http://service.real.com/help/library/guides/extend/embed.htm 。 我们假设有一个视频文件,其URL为 http://YourURL/filename.ram,那么我们就可以这样定义: 文件1 ,如果文件是在本地,URL也可以为相对路径。 三、检测用户是否安装RealPlayer播放器 在页面的 部分加入以下JavaScript代码,用以检测用户是否安装RealPlayer播放器: </P><P><!--</P><P>var RealMode=0;</P><P>var RealPlayer5=0;</P><P>var RealPlayer4=0;</P><P>var RealPlayerG2=0;</P><P> <br/>if (navigator.userAgent.indexOf("MSIE")< 0 ){</P><P>numPlugins = navigator.plugins.length;</P><P>for (i = 0; i < numPlugins; i++){</P><P>plugin = navigator.plugins[i];</P><P>if (plugin.name.substring(0,10)=="RealPlayer"){</P><P>RealMode=1;</P><P>}</P><P>}</P><P>}</P><P>// 以下代码通过VBScript的CreateObject()函数动态的创建RealPlayer对象</P><P>document.write('<SCRIPT LANGUAGE=VBScript\> \n');</P><P>document.write('on error resume next \n');</P><P>document.write('RealPlayerG2 = (NOT IsNull(CreateObject("rmocx.RealPlayer G2 Control")))\n');</P><P>document.write('RealPlayer5 = (NOT IsNull(CreateObject("RealPlayer.RealPlayer(tm) ActiveX Control (32-bit)")))\n');</P><P>document.write('RealPlayer4 = (NOT IsNull(CreateObject("RealVideo.RealVideo(tm) ActiveX Control (32-bit)")))\n');</P><P>document.write('</SCRIPT\> \n');</P><P>if ( RealPlayerG2 || RealPlayer5 || RealPlayer4 ){</P><P>//可以在此处添加<object>对象</P><P>}else if ( RealMode ){ // NetScape浏览器用户</P><P>// 可以在此处加入<embed>对象</P><P>}else{</P><P>window.location.replace("install.htm"); // 转入install.htm页面指导用户进行安装</P><P>}</P><P>--></P><P> 至此,我们已经实现了一个基于Web的视频点播的基本功能
热心网友 时间:2024-10-25 03:25
RealPlayer 代码如下: 龙行天下 http://llf535.cn AUTOSTART 0为打开页面处于待命状态,为-1时打开页面直接播放 http://music.cnvnet.com/mtv/20010618/001.ram"; /> http://www.llf535.com 中国站长网 播放文件地址 龙行天下 http://llf535.cn http://music.cnvnet.com/mtv/20010618/001.ram"; /> 播放文件地址 宝贝时尚乐园 http://www.babyard.com
求采纳