Hadoop应用笔记-读取视频流给Flash播放器

首先下载一个测试用的Flash视频播放器Strobe Media Playback

http://osmf.org/strobe_mediaplayback.html

然后在Hadoop中添加一个flv文件,我在此处是demo.flv,在根路径下。命令行代码:

bin/hadoop fs -copyFromLocal /Users/alex/Desktop/test.flv hdfs://localhost:9000/demo.flv

打开localhost:50070验证是否成功将视频放入到hdfs中。

然后在MyEclipse中新增一个web工程,将hadoop所需jar包加入到类路径中。新建一个Servlet,我在xml中配置其名字为getMov主要代码如下:

  1. public void doGet(HttpServletRequest request, HttpServletResponse response)   
  2.         throws ServletException, IOException {   
  3.        
  4.     response.setContentType("application/octet-stream");   
  5.     FileContext fc = FileContext.getFileContext(URI.create("hdfs://localhost:9000"));   
  6.     FSDataInputStream fsInput = fc.open(new Path("/demo.flv"));   
  7.     //int size = fsInput.available();   
  8.        
  9.     //byte[] data = new byte[size];   
  10.     OutputStream os = response.getOutputStream();   
  11.     IOUtils.copyBytes(fsInput, os, 4090,false);   
  12.     os.flush();   
  13.     os.close();   
  14. }  

在Strobe Media Playback player setup页面中进行测试应该会看到视频如下图所示:

Hadoop应用笔记-读取视频流给Flash播放器

相关推荐