Jwplayer 读取服务端文件出错?
jwplayer("containerFlv").setup({ flashplayer: "<%=basePath %>js/jwplayer/player.swf", file: "<%=basePath %>playerServlet?resourceId=11111", // 方式1 //file:"<%=basePath %>js/jwplayer/video.flv" , // 方式2 height: 520, width: 700, image: "<%=basePath %>image/2008921593331_2.jpg" } );
FLV FILE : 使用方式1 视频显示不出来。。
附上PlayerServlet部门代码:
File f = new File("f:/test/test.flv"); if(f.exists()){ response.setHeader("Content-Length", "" + 1024000000); response.setContentType("application/x-shockwave-flash"); FileInputStream is = new FileInputStream(f); PrintWriter pw = response.getWriter(); int k; while ((k = is.read()) != -1) { pw.write(k); } pw.flush(); pw.close(); is.close(); is = null; }是参数配置的不对,还是服务端输出有问题?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
解决了,谢谢红薯...
后面从文档找到了.Http Streaming 配置方式
provider:'http',
flv 的 content-type 应该是
video/x-flv