Android 视频流传输到 windows azure
我想将流视频从 Android 摄像头存储到 windows azure 服务器捕获的视频*。这怎么可能?
在android中,我知道parcelfiledescriptor类的使用。我还创建了一个应用程序来将视频流传输到服务器。在该应用程序服务器端由java套接字编程控制。完全成功。
但现在我想要在 Windows Azure 的帮助下进行服务器端编程???请帮助我......提前致谢..
I want to store stream video to the windows azure server from the android camera captured video*.How it possible?
In android i know the use of parcelfiledescriptor class.And i also created a application to stream video to the server.In that application server side controled by java socket programming.that fully successful..
But now i want the server side programming to do with the help of Windows Azure ???please help me.....thanks in advance..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以将视频作为 blob 上传到 Window Azure Blob 存储吗?最近,Windows Azure 媒体服务已经发布,它专门支持视频。
can you just upload the video as blob to Window Azure Blob Storage? More recently, Windows Azure Media Services has been shipped, which is specialized in supporting video.
不知道 windows azure,但是有一种方法可以流式传输到 wowza 服务器:
https://software.intel.com/en-us/intel-inde
do not know about windows azure, but there is a way to stream to wowza servers:
https://software.intel.com/en-us/intel-inde
对于使用 Azure 存储版本 2009-04-14 及更高版本的应用程序,您可以请求 Azure 传送部分内容(HTTP 206 响应)。您只需上传视频文件,然后加载即可进行流式传输。
这可能会有所帮助,不过现在很少需要如此详细地管理 HTTP 206 响应,SDK 应该会为您做这件事。
For applications using the Azure storage version 2009-04-14 and newer, you can request Azure to deliver partial content (HTTP 206 responses). You can simply upload the video file and then load it for streaming.
This might be helpful, although now it is rarely necessary to manage the HTTP 206 responses in such a detail, the SDK should do it for you.