Android streaming video on windows azure

I want to save streaming video to azure windows server from the camera of the Android camera of the captured video *. How is this possible?

In android, I know the use of the parcelfiledescriptor class. And I also created an application for streaming video to the server. On this side of the java socket programming server application. It is completely successful ..

But now I want server-side programming to be done using Windows Azure ???, please help me ..... thanks in advance.

+4
source share
3 answers

Can you just upload the video as blob in Window Azure Blob Storage? Most recently, Windows Azure Media Services, which specializes in video support, has been shipped.

0
source

I don’t know about windows azure, but there is a way to stream to wowza servers: https://software.intel.com/en-us/intel-inde

0
source

For applications that use the Azure storage version 2009-04-14 and later, you can request Azure to deliver partial content (HTTP responses 206). You can simply upload a video file and then upload it for streaming.

This can be useful , although nowadays it is rarely necessary to manage HTTP 206 responses in such detail, the SDK should do this for you.

0
source

All Articles