Cloudfront Video Streaming

时间:2013-06-01 21:48:32

标签: amazon-web-services amazon-cloudfront

我对亚马逊云前端流媒体选项感到困惑。我还没有注册AWS,所以我想确定我想要什么。

场景是我选择要在凌晨2点流式传输到iPhone的视频。该视频长达30分钟。如果有人在凌晨2点10分打开了视频链接。他会从哪里看到视频?他会从一开始就观看视频,还是从早上10点开始观看视频?

我的第二个问题是,当我从云端流式传输视频时,用户可以向前搜索还是向后搜索?

基本上我想要预先录制网络研讨会,我想让用户觉得它是一个直播活动而不允许他们向前或向后搜索。

2 个答案:

答案 0 :(得分:1)

创建S3存储桶并上传文件后。为您的存储桶创建Web分配。 并用于播放视频。创建一个html页面

<HTML>
<HEAD>
<TITLE>Amazon CloudFront Streaming with JW Player 6</TITLE> 

<script type='text/javascript' src='http://content.jwplatform.com/libraries/yQ0SAHQS.js'></script>

</HEAD>

<BODY>

<h1>Cloud Front Video Streaming</h1>

<div id="myElement">Loading the player...</div>
<script type="text/javascript">
var playerInstance = jwplayer("myElement");
playerInstance.setup({
    file: "http://d49asxxxxxxxxxxxx.cloudfront.net/Make-a-world-of-difference.mp4",

    width: 640,
    height: 360,
    title: 'Basic Video Embed',
    description: 'A video with a basic title and description!',
    mediaid: '123456'
});
</script>
</BODY>

</HTML>

注意:http://d49asxxxxxxxxxxxx.cloudfront.net是您的云前端的域名。

<script type='text/javascript' src='http://content.jwplatform.com/libraries/yQ0SAHQS.js'></script>

This is the script for JW Player.that can be found on the 
www.jwplayer.com/ after signup. 
Choose your player 16:9 or 480*720

您将获得脚本库代码。 http://content.jwplatform.com/libraries/yQ0SAHQS.js

答案 1 :(得分:0)

您可能必须将其作为直播流运行。否则它只是一个标准的视频流,您可以在播放中寻找任何位置。

您可以在此处找到有关如何执行此操作的更多信息:http://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/LiveStreamingAdobeFMS4.5.html