flowplayer大尺寸视频无法播放
我在我的网站中嵌入了 flowplayer,但 flowplayer 无法播放 321 MB 大小的视频。
它适用于小尺寸视频。所有视频均为MP4格式,并存放在亚马逊云计算中。
这是我用来播放这些视频的代码:-
<script type="text/javascript" src="path/to/js/flowplayer/example/flowplayer-3.2.6.min.js"></script>
<a href="amazon/url/of/video.mp4"
style="display:block;width:520px;height:330px"
id="player">
</a>
flowplayer("player", "path/to/flowswf/flowplayer/flowplayer-3.2.7.swf", {
autoBuffering : false, // set a Player property
onError: function(errorCode, errorMessage) {
alert(errorCode);
alert(errorMessage);
}
});
这是 flowplayer 的限制吗?
如何播放 321 MB 等大尺寸视频?
谢谢
I have embedded flowplayer in my site but the flowplayer is not playing video with 321 MB size.
It is working fine with the small size videos. All videos are in MP4 formats and placed at Amazon cloud computing.
This is the code I am using to play those videos:-
<script type="text/javascript" src="path/to/js/flowplayer/example/flowplayer-3.2.6.min.js"></script>
<a href="amazon/url/of/video.mp4"
style="display:block;width:520px;height:330px"
id="player">
</a>
flowplayer("player", "path/to/flowswf/flowplayer/flowplayer-3.2.7.swf", {
autoBuffering : false, // set a Player property
onError: function(errorCode, errorMessage) {
alert(errorCode);
alert(errorMessage);
}
});
Is it a limitation of flowplayer?
How can I play large size videos like 321 MB?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据此页面,您需要使用RTMP 从 Amazon 进行流式传输。看起来 FlowPlayer 需要配置为使用 RTMP 插件。也许这会有所帮助;-)
According to this page you need to use RTMP to stream from Amazon. Looks like FlowPlayer needs to be configured to use a RTMP plugin. Maybe this will help ;-)