I've seen plenty of info about how to stream video from the server to an android device, but not much about the other way, ala Qik. Could someone point me in the right direction here, or give me some advice on how to approach this?

link|improve this question
1  
I'd like to see an answer to this as well. Have you come up with anything yet? – Jeremy White Jun 6 '10 at 21:07
Nope, gave up on streaming. Just beating the MediaRecorder API into submission was tough enough. You could check out the sipdroid code though, they seem to have gotten it working. – JCL Jun 14 '10 at 8:10
The Video code isn't in the Sipdroid source online though :( – Donal Rafferty Aug 9 '10 at 13:56
I am also looking for a solution.. Found out one part Media Recorder API can be used to stream to server, Now what to do in the server.. Here is one of the link mattakis.com/blog/kisg/20090708/… – Azlam Oct 8 '10 at 17:04
You can look into ffserver a component in ffmpeg. – Vinay Oct 13 '10 at 16:11
show 1 more comment
feedback

3 Answers

I have hosted a open source project to enabling Android phone to IP camera:

http://code.google.com/p/ipcamera-for-android

The raw video data is fetched from LocalSocket, and the MDAT MOOV of MP4 was checked first before streaming. The live video is packed as FLV format, and can be played via Flash video player with a build in web server :)

link|improve this answer
Where is the code? – Vinod Maurya Mar 10 '11 at 6:47
6  
Click the "Source" button. Also, whoever downvoted this guy is a tool. – Nicholi Mar 10 '11 at 21:26
It gives me Errors.. like, java.lang.UnsatisfiedLinkError: Couldn't load teaonly: findLibrary returned null.. If anyone has solution then please share it. Thanks – mpp Mar 19 at 10:04
feedback

I'm looking into this as well, and while I don't have a good solution for you I did manage to dig up SIPDroid's video code:

http://code.google.com/p/sipdroid/source/browse/trunk/src/org/sipdroid/sipua/ui/VideoCamera.java

link|improve this answer
Checking out that piece of code now.. Will inform everyone soon :) – Azlam Oct 8 '10 at 17:06
What they have done over there is they stream using RTP packets to a server.Now the question is what is being done on the server? what does the trans-coding and how is it getting streamed – Azlam Oct 8 '10 at 18:33
@Azlam - How did it go? – Dann Dec 14 '10 at 21:35
feedback

Took me some time, but I finally manage do make an app that does just that. Check out the google code page if you're interested: http://code.google.com/p/spydroid-ipcamera/ I added loads of comments in my code (mainly, look at CameraStreamer.java), so it should be pretty self-explanatory. The hard part was actually to understand the RFC 3984 and implement a proper algorithm for the packetization process. (This algorithm actually turns the mpeg4/h.264 stream produced by the MediaRecorder into a nice rtp stream, according to the rfc)

Bye

link|improve this answer
feedback

protected by Community Sep 27 '11 at 18:49

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.