安全传输 CDN 视频内容

发布于 2024-09-06 04:30:33 字数 162 浏览 4 评论 0原文

我正在使用 Amazon CloudFront 将付费视频内容流式传输给我的用户,但在确保视频安全方面遇到问题。 Wowza 通过创建安全令牌来实现这一点,但使用 Wowza 的成本会更高。

我是否可以通过使用 Cloudfront 或其他 CDN 更好地保护我的内容?

谢谢!

I am using Amazon CloudFront to stream paid video content to my users and I am having problems getting the videos secured. Wowza does that by creating a secure token, but the use of wowza would be much more costly.

Is there anyway that I can better protect my content by using Cloudfront or other CDN?

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

朕就是辣么酷 2024-09-13 04:30:33

您可以将签名 URL 与 Amazon CloudFront 结合使用。

下面是文档的链接,但基本上您的应用程序可以为经过身份验证的用户生成媒体资产的签名 URL,以便只有他们才能访问该资产,并且只能在指定的日期/时间范围内访问该资产。

摘自文档:

您可以限制对 CloudFront 边缘缓存中的对象的访问:您可以将 CloudFront 配置为要求最终用户使用特殊签名 URL 访问您的对象。然后,您创建签名 URL(手动或以编程方式)并将其分发给您的用户。

当您为对象创建签名 URL 时,您可以指定:

  • 结束日期和时间,之后网址将不再有效。
  • (可选)网址生效的日期和时间。
  • (可选)可用于访问您的内容的计算机的 IP 地址或地址范围。

签名 URL 的一部分使用公钥/私钥对中的私钥进行哈希处理和签名。当有人使用签名 URL 访问对象时,CloudFront 会比较 URL 的签名部分和未签名部分。如果它们不匹配,CloudFront 不会提供该对象。

链接到文档:
http://docs.aws.amazon.com/AmazonCloudFront/latest/ DeveloperGuide/PrivateContent.html

You can use signed URLs with Amazon CloudFront.

Below is the link to the documentation, but basically your application can generate a signed URL for the media asset just for the authenticated user so that only they can access that asset and only for a specified date/time range.

Excerpt from the docs:

You can restrict access to objects in CloudFront edge caches: You can configure CloudFront to require that end users access your objects using special signed URLs. You then create the signed URLs (either manually or programmatically) and distribute them to your users.

When you create signed URLs for your objects, you can specify:

  • An ending date and time, after which the URL is no longer valid.
  • (Optional) The date and time that the URL becomes valid.
  • (Optional) The IP address or range of addresses of the computers that can be used to access your content.

One part of a signed URL is hashed and signed using the private key from a public/private key pair. When someone uses a signed URL to access an object, CloudFront compares the signed and unsigned portions of the URL. If they don't match, CloudFront doesn't serve the object.

Link to the docs:
http://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/PrivateContent.html

陈甜 2024-09-13 04:30:33

查看安全 AWS CloudFront 入门Streaming with Python 了解使用签名 URL 保护 Cloudfront 流的完整指南。它展示了如何使用 python 生成签名 URL,并在设定的时间后自动过期。

享受!

Take a look at Getting started with secure AWS CloudFront streaming with Python for a complete guide to securing cloudfront streams using signed URLs. It shows how to do it using python to generate the signed URLs that automatically expire after a set amount of time.

Enjoy!

只有影子陪我不离不弃 2024-09-13 04:30:33

体素 - http://www.voxel.net/products-services/voxcast-cdn< /a>
他们使用 Wowza,您可以应用身份验证令牌和参数。

如果您需要帮助,请告诉我,我可以与他们聊天。

问候,
cdnXite

Voxel - http://www.voxel.net/products-services/voxcast-cdn
They using Wowza and you can apply authentication tokens and parameters.

Let me know if you need help and I can chat with them.

Regards,
cdnXite

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文