- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我将在 Azure 平台上构建一个网站,该网站广泛使用 Windows Azure 媒体服务进行视频上传。
我正在尝试计算将视频编码为所有支持的格式以及每月将视频存储在 Windows Azure 存储中所需的费用。例如。 1 分钟的视频大小为“xMB”,在 Azure 存储中的成本为“$x”,编码成本为“$x”。
我可以在任何地方或任何方式找到此信息吗?
谢谢!
最佳答案
以下是我不久前与媒体服务团队就定价进行的讨论的摘录(仅是我的评论)。基本上,Azure 媒体服务对于直接内容提供商(例如 Netflix 或 Hulu)更有用,在这些提供商中,您将在保护对内容的访问方面拥有既得利益,并且每个内容都可以让您赚钱。
对于 YouTube 风格的服务,与其他编码器相比,它的竞争力并不强,因为成本(当然忽略实际流式传输所用的带宽)几乎完全取决于媒体编码器的使用情况。
Below is a pricing scenario I worked out, based on my understanding of Media Services' pricing. This is ignoring bandwidth costs, just focusing on the encoding:
For one 45 second, 50MB HD WMV video, converted to a 5 bitrate set of SD mp4's (about 28MB when done), that's a total of 78MB data processed. So:
@ $1.99/GB: $0.155. As far as I know, using the Media Encoder to get thumbnails requires creating a separate Task, with a separate input asset, effectively duplicating the input cost just to get thumbnails. Waiting to use the encoded asset first (instead of the original 50MB uploaded video) would make this cheaper, costing about another $0.056, totaling about $0.21. This is assuming we stay in the 0.5TB/mo realm of pricing for a while.
By comparison, other services like ZenCoder ignore the source video and charge only per minute of output video ($0.05 per minute at the lower-use end), with multiple outputs at a 20% discount. So if I specified an output of five different bitrates (about the same as the H264 Adaptive Bitrate MP4 Set SD 16x9 configuration Media Services offers) on the same 45 second video, the cost comes to $0.15.
If I choose to ignore bitrate sets and just go for 480p, the costs drop, but for Media Services I'm still paying $0.155 to send the source video to the encoder. ZenCoder only charges for output runtime, so I'd only pay about $0.03. There's another competitor built on the CPUsage platform called GridVid.Me that looks even cheaper (https://gridvid.me/index/more-info) .
So you can see how long-form video encoding scales with both of those plans; with Media Services it scales with quality, which I like very much, but because it charges for the source video it also puts me at the mercy of whatever people are uploading to it.
关于c# - Windows Azure 上每分钟或每秒视频的成本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15180463/
我想要一个按钮,单击该按钮会在指定时间后刷新当前页面。 我目前有: setTimeout(function reload(){ location = '' },1000) Relo
我有一个场景,我需要每秒向服务器发送数据(非常少的字节)。这个细节很重要,所以我也需要对其进行加密。 深入研究后,我认为我们可以使用 HTTP 协议(protocol),但在这种情况下,HTTP he
我在即将进行的测试的学习指南中得到了这个问题。我不明白如何解决这个问题。今天是我的考试,我希望能得到一些帮助。 如果 CPU 每条指令发出一个内存请求并且计算机以 200 MIPS 运行,大约需要多少
我正在编写一个程序来确定每秒可以运行多少个 NOP,但我得到的数字似乎非常小。 int main() { struct timeval tvStart, tvDiff, tvEnd;
我想实现每秒 5-1 百万次远程函数调用。假设我们有一台开始计算的 Central 计算机,还有一台执行计算的 Worker 计算机。实际配置中会有很多Worker计算机。 假设我们的任务是计算一个[
下面的代码向最后一个 div 添加了一个类: $(".mydivs:last").addClass('added'); 这适用于页面加载,但 div 在动画中,因此顺序会改变。有没有办法让代码每秒运行
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 这个问题似乎不是关于 a specific programming problem, a softwa
我刚刚在 HBase 中创建了一个表并用数据填充了它。从 7 个区域服务器看来,数据已写入区域服务器 6 和 7。 但我不明白为什么服务器 6 和 7 的每秒请求数为零? 最佳答案 读取请求计数 和写
我正在开发一个聊天应用程序,需要您的帮助。如果有人在线,我将信息存储在数据库中。现在我有一个功能,可以显示您的好友列表以及聊天伙伴是否在线。问题是:如果有人上网,我想经常检查。到目前为止,我有一个每秒
我正在编写一个快速而肮脏的脚本来检测服务器停机时间。我有一台服务器和两个远程客户端,它们每秒对服务器执行一次 ping 操作以查看它是否已启动。 如果您最多可以每分钟运行一次 cron,我该如何设置任
有什么方法可以让 Graphite 绘制图表请求吗? 当你从 nginx_status 检索 nginx 请求时,你正在向 Graphite 发送一个绝对值,所以我在想是否有任何方法可以获取每秒的速率
我正在构建一个 Android 应用程序,它将加速度计和陀螺仪数据记录到文本文件中。在大多数教程中,他们使用的方法涉及创建两个文本文件,并每秒打开和关闭它们 50 次。即: private stati
嘿,我目前在我的 mysql 上有超过 300+ qps。在相当繁重的 PHP 网站上大约有 12000 UIP 一天/没有 cron。我知道在没有看到该网站的情况下很难判断是否可以,但您是否认为这完
我希望每秒钟使用我的鼠标移动功能旋转矩形我做错了什么?我怎样才能做我的变换,以便高度和旋转每隔一个元素改变一次?我用 if ( i % 2 == 0){} 试了一下 function modifyRe
有没有办法配置具有恒定负载的性能测试用例(例如,每秒 3 个新请求,持续 1 分钟)? 其他负载测试库具有此功能来设置请求率(例如 Artillery.io、Vegeta)。 k6 有设置VUs 的方
(只是想提一下,这是我的第一个问题,如果我做错了什么,我深表歉意)。我正在制作一个解析 CSV 文件并将其保存为列表的 Python 程序。但是,该程序需要用户输入他们希望将数据发送到服务器的速度。我
如何使用 python 将毫秒转换为帧数?我知道视频的帧速率(每帧 25 秒) 2683480 2684448 最佳答案 我最终决定手动执行此操作,因为我仍然没有弄清楚 ffmpeg 函数等 25fp
我有一个动态表,它按从主要编号到次要编号的降序排列。我想用 jQuery 在前 2 行放置红色背景,在接下来的行放置橙色背景,在接下来的 2 行放置黄色背景,在接下来的 3 行放置绿色背景。 表结构:
构建 Rails 应用程序 (ruby 2.4.0p0/Rails 5.1.4) 并使用我的 Macbook air (MacOS High Sierra 10.13.2) 在本地进行测试,但我一直遇
这个问题已经有答案了: NSTimer not firing when runloop is blocked (2 个回答) 已关闭 9 年前。 我使用 NSTimer,它每秒触发一次并更新一个标签,
我是一名优秀的程序员,十分优秀!