The first question is: do you need to just send the file, or do you need to send it in streaming mode? There is also "progressive download' (see http://dowire.org/wiki/Streaming_vs_Progressive_Download).
Sending it in streaming mode is harder. That is why protocols like RTSP are defined. See http://en.wikipedia.org/wiki/RTSP and http://stackoverflow.com/questions/1201374/rtsp-client-in-android. If all you need to do is send the file, Google "android ftp" to find an ftp client you can run on your Android phone. Or you could write your own code to open a socket and send the stream, but then you have to worry about all the corner cases the ftp client has already solved for you. On Sep 21, 6:47 am, Christina Loop <[email protected]> wrote: > Hello everyone, > > I am trying to develop an android application which will be able to > record a video and send it in real time to a remote computer. The > computer then will play it live. I have managed to establish a > connection between the android and the computer, and to record a video > on the android phone. My problem is, how will I be able to send this > video to the computer? Does anyone have an idea? > > Thank you in advance.. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

