动态转码和流媒体
我正在尝试找出让我的网站动态转码并将视频文件流式传输给主要使用移动设备的用户的最佳方法,该网站基于 php/mysql 并在我可以完全访问的 Windows 2003 服务器上运行,有什么想法吗最好这样做 - 如果可能的话,我不需要在上传时对视频进行转码
im trying to work out the best way to have my site dynamicly transcode and stream video files to users who are mostly on mobile devices, site is php/mysql based and running on a windows 2003 server which i have full access to, any ideas how best to do this - id rather not need to transcode videos on upload if possible
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
对于您的服务,请考虑一些具有吸引力的东西:Inlet,数字急流,或 Rhozet< /a>.其中一些播放器提供某种形式的实时流编码,但通常会受到硬件限制。它们都有合适的 API 来与硬件和配置文件进行交互。
您还可以考虑使用公共转码服务,但保持资产私有。它不像手卷纸那么优雅,但它确实解决了问题。
如果内容量或流量增加,上传转码/上传编码可能会更好地满足您的需求。实时转码有许多障碍,包括竞争情况和带宽。
For your services consider something with some oomph: Inlet, Digital Rapids, or Rhozet. Some of these players offer some form of live-stream encoding but you'll generally have limitations on hardware. They all have suitable APIs for interacting with the hardware and profiles.
You can also consider using public transcoding services but keep the assets private. It's not quite as elegant as a roll-your-own but it does solve the problem.
Transcode-/Encode-on-upload will probably serve your needs better if the volume of content or traffic increases. Real-time transcoding has many hurdles including race situations and bandwidth.
我过去也有过类似的情况,当时我有本书标记为如下,其中有一些非常有趣的东西,
php 视频转码器
很抱歉,如果这对您没有帮助
I had a similar similar situation in my past at that time I had book marked this like below which has some very interesting stuff ,
php video transcoder
I am sorry If this didn't help you