我遵循以下教程: http ://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/TutorialStreamingJWPlayer.html
我在 localhost 中托管了我的 html 代码(目前)。我打开播放器,但播放器不播放任何视频。它只是继续旋转(表明它仍在加载)。但是没有任何缓冲或没有其他任何事情发生。
<head>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js"></script>
<script type="text/javascript" src="jwplayer.js"></script>
</head>
<body>
<div id='mediaplayer'>This text will be replaced</div>
<script type="text/javascript">
jwplayer('mediaplayer').setup({
flashplayer : 'jwplayer.flash.swf',
width: '720',
height: '480',
file: 'rtmp://sxxxxxx.cloudfront.net/cfx/st/a.mp4'
});
</script>
</body>
a.mp4 文件已在 S3 存储桶中标记为公开。我还为云前端创建了另一个 http 下载,如果我只是将以下 URL 文件下载下来。
http://dxxxxxx.cloudfront.net/a.mp4