我对亚马逊云前端流媒体选项感到困惑。我还没有注册AWS,所以我想确定我想要什么。
场景是,我选择了一个视频,在凌晨2点流式传输到iPhone视频有30分钟长。如果一个人在凌晨2点10分打开视频链接他会从哪里看到视频?他是从一开始就看视频,还是从早上10点开始看视频?
我的第二个问题是,当我从cloudfront流式传输视频时,用户可以向前或向后查找?
基本上,我想流式传输预先录制的网络研讨会,我想给用户一种错觉,这是一个现场活动,而不允许他们向前或向后寻找。
发布于 2013-06-02 21:17:32
您可能必须将其作为实况流运行。否则,它将只是一个标准的视频流,您可以在回放中查找到任何位置。
您可以在此处找到有关如何执行此操作的更多信息:http://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/LiveStreamingAdobeFMS4.5.html
发布于 2016-01-15 12:46:16
在创建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
https://stackoverflow.com/questions/16877584
复制相似问题