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

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

然后在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主要代码如下:

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

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

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

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/19f7ad2297b4a8c68c58d6436070c66f.html