实现视频点播系统,B/S架构,服务端至少应该是两个服务器:流媒体服务器,web服务器。客户端则就是web页面。当开启页面后则是客户端和服务器的第一次交互,通过http协议得到页面。里面会有流媒体地址的信息,浏览器里面点击显示视频组件,将流媒体的地址传给流媒体播放器,并启动播放器去请求视频。这是第二次交互。服务器端流媒体服务器发送流给客户端,页面上播放就okay了。
2. 环境及所需软件
测试环境是xp sp2及IE 6浏览器。
服务端(IP地址:192.168.10.177):
流媒体服务器先用个简单的:live555 Media Server(http://www.live555.com/mediaServer/windows/live555MediaServer.exe)
Web服务器可以用Tomcat,IIS或者其他的Web服务器都可以。本文直接使用静态页面进行测试,不搭建Web服务。
客户端(IP地址:192.168.10.177):vlc-2.0.4的Activex ocx
3. 配置流媒体服务器
下载完live555 Media Server之后放到服务端D:/video目录(需要保证在video目录下有bipbop-gear1-all.ts、02.mp3文件)下面,启动时会有以下信息:
"Play streams from this server using the URL
rtsp://192.168.10.177/<filename>
where <filename> is a file present in the current directory."
并且后面还会有live555支持的视频格式。本测试就用的mp3和ts格式。其他格式没有试验过。
mp3好说,ts怎么得到呢?这时候vlc就出场了。vlc有转换保存功能,媒体->转换/保存->选择某个文件后点击转换/保存->流输出页面勾选本地播放,勾选文件并且浏览得到个文件名,注意后缀为ts而不是ps,方案封装选MPEG-TS,然后点击save。把你选择的视频播放一遍之后,ts格式的文件就生成好了。
将生成好的ts文件和网上下载的mp3放到d:/video下面,本测试为bipbop-gear1-all.ts及02.mp3。这样流媒体服务器就配置好了。
4. 客户端web页面测试
本web页面代码是vlc的Activex测试代码test.html上修改精简的。
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml" >
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
- <script>
- var itemId = 0;
- function getVLC(name)
- {
- if (window.document[name])
- {
- return window.document[name];
- }
- if (navigator.appName.indexOf("Microsoft Internet")==-1)
- {
- if (document.embeds && document.embeds[name])
- return document.embeds[name];
- }
- else
- {
- return document.getElementById(name);
- }
- }
- function doGo(mrl)
- {
- var vlc = getVLC("vlc");
- itemId=vlc.playlist.add(mrl);
- vlc.playlist.playItem(itemId);
- document.getElementById("btn_stop").disabled = false;
- }
- function updateVolume(deltaVol)
- {
- var vlc = getVLC("vlc");
- vlc.audio.volume += deltaVol;
- }
- function doPlay()
- {
- vlc.playlist.playItem(itemId);
- document.getElementById("btn_stop").disabled = false;
- document.getElementById("btn_play").disabled = true;
- }
- function doStop()
- {
- getVLC("vlc").playlist.stop();
- document.getElementById("btn_stop").disabled = true;
- document.getElementById("btn_play").disabled = false;
- }
- </script>
- </head>
- <body>
- <div style="margin: 50px">
- <a title="rtsp://192.168.10.177/bipbop-gear1-all.ts" href="#" onclick="doGo(this.title);return false;">bipbop-gear1-all.ts</a>
- <span style="margin: 20px;" />
- </div>
- <div>
- <object classid="clsid:9be31822-fdad-461b-ad51-be1d1c159921"
- width="640"
- height="480"
- id="vlc"
- events="true">
- <param name="mrl" value="" />
- <param name="showdisplay" value="true" />
- <param name="autoloop" value="false" />
- <param name="autoplay" value="false" />
- <param name="volume" value="50" />
- <param name="starttime" value="0" />
- <embed pluginspage="http://www.videolan.org"
- type="application/x-vlc-plugin"
- version="videolan.vlcplugin.2"
- width="640"
- height="480"
- name="vlc">
- </embed>
- </object>
- </div>
- <div>
- <input type=button id="btn_play" value=" 播放 " onClick='doPlay();' disabled="true">
- <input type=button id="btn_stop" value="停止" onClick='doStop();' disabled="true">
- <input type=button value="静音切换" onclick='getVLC("vlc").audio.togglemute();'>
- <input type=button value="减小音量" onclick='updateVolume(-10)'>
- <input type=button value="增加音量" onclick='updateVolume(+10)'>
- </div>
- </body>
- </html>