在所有浏览器中播放mp4文件

时间:2012-11-27 05:00:17

标签: html jsp cross-browser

实际上在我的项目中,我要求播放扩展名为.mp4的视频文件。 有没有办法在所有浏览器中播放此视频文件。我知道Firefox不支持.mp4格式和

Here i found that which browser supports for which format.

但是我想播放唯一的.mp4文件,该文件保存在我的服务器端以供每个浏览器播放。你能告诉我在所有浏览器上使用的通用代码吗?我发现有多个源可以在不同的浏览器中播放同一个文件。我认为他们正在使用多个扩展名保存相同的文件。

请帮我解决这个问题。我这个问题花了最近2天。

1 个答案:

答案 0 :(得分:0)

在你的jsp中使用jquery.fineuploader.js 通过创建

var uploader = new qq.FineUploader({
//here you can write your uploading video code
element : document.getElementById('fine-uploader'),
        acceptFiles : 'video/mpeg',
        autoUpload: false,
        multiple: false,

});
// more code to write
// and for more details refer

http://fineuploader.com/fine-uploader-demo.html

你的播放器HTML代码

<div id="player" style="display: inline-block; position:relative; margin-top:-25px;">
<a href="http://get.adobe.com/fr/flashplayer/">You need to install the Flash plugin</a>                         
</div>
<div id="fine-uploader"></div>

您可以使用以下代码

播放.mp4文件上传
function playVideo(videoUrl){
    $("#player").css('display', 'inline-block');
    $("#player > Object").remove();
    var flashvars= {};
    var video = {
            quality: "high",
            bgcolor: "#000000",
            allowScriptAccess: "always",
            allowFullScreen: "true",
            wmode: "transparent",               
            flashvars: "fichier="+videoUrl,
        };
    var attributes = {};
    flashObject("http://flash.webestools.com/flv_player/v1_27.swf", "player", "297", "180", "8", false, flashvars, video, attributes);
}

这将提供播放器和播放.mp4文件。适用于Firefox,但不适用于iexplorer。