在Play Framework上设置MimeType

时间:2015-10-21 10:38:09

标签: html5 video playframework playframework-2.0 mime-types

我尝试通过Play JAVA应用程序提供HTML5视频。

它可以在任何地方使用,但它不适用于Safari。格式没问题,因为我可以拖动它并将其放在窗口中并实际播放。

我能看到的唯一区别如下。

工作:(检查类型)

enter image description here

不工作:(检查类型)

enter image description here

我试过了:

public static Result getMp4()


 {

     response().setContentType("video/mp4");


     return ok(new
java.io.File("path"));


 }

0 个答案:

没有答案