如何使用Flash播放器将视频添加到html

时间:2015-08-05 06:06:45

标签: html flash video flowplayer flash-video

我想使用flash player(不是html5)将格式(mp4)的视频添加到我的页面。我使用Flowplayer尝试了这个,但我无法做到这一点:

<html>
    <head></head>
    <body>
        <div class="flowplayer is-splash"
            data-engine="flash"
            data-swf="../dist/flowplayer.swf">
            <video src="http://d32wqyuo10o653.cloudfront.net/Extremists.m4v" preload="none"></video>
        </div>
    </body>
</html>

有人可以解释一下吗?我搜索了很多实验,但没有得到结果。

2 个答案:

答案 0 :(得分:0)

试试这个,我的工作!

<!DOCTYPE html>
 <html>
 <body>

 <video width="320" height="240" controls>
   <source src="http://d32wqyuo10o653.cloudfront.net/Extremists.m4v" type="video/mp4">
 <source src="movie.ogg" type="video/ogg">
</video>

</body>
</html>

答案 1 :(得分:0)

如果您只想使用flowplayer flash version,可以执行以下操作:

<html>
<head>
    <script src="http://releases.flowplayer.org/js/flowplayer-3.2.13.min.js"></script>
</head>
<body>
    <a href="http://d32wqyuo10o653.cloudfront.net/Extremists.m4v" class="player" style="display:block;width:425px;height:300px;margin:10px auto" id="player"></a>
    <script>
        flowplayer("player", "http://releases.flowplayer.org/swf/flowplayer-3.2.18.swf");
    </script>
</body>
</html>

您可以在codebeautify.org here上看到此代码。

希望可以提供帮助。