I'm new to Android and socket programming. I want to create an android application that transfer video live from device camera to PC. What first i do is to get a raw video data from PreviewCallback arguments and convert it to an RTP Packet. I was just using JLibRTP to do this. Regarding to transfer the packet i think, there are some related class: RtpPkt, RtpSession, and RtpSocket.

Here is my glance code:

DatagramSocket rtpSocket = new DatagramSocket();
DatagramSocket rtcpSocket = new new DatagramSocket();

RtpSession rtpSession = new RtpSession(rtpSocket, rtcpSocket);

public void surfaceCreated(SurfaceHolder holder) {
        try {
            camera = Camera.open();
            camera.setPreviewCallback(new PreviewCallback() {
                public void onPreviewFrame(byte[] _data, Camera _camera) {
                    int height = 240;
                    try {
                        rtps.sendData(_data);
                    } catch (Exception e) {
                        e.printStackTrace();
                        Toast.makeText(getApplicationContext(), e.toString(),
                                Toast.LENGTH_SHORT).show();
                    }
                }
            });

            camera.setPreviewDisplay(holder);
            camera.startPreview();
        } catch (IOException e) {
            Log.d("CAMERA", e.getMessage());
        }
}

I'm still wondering where i have to put address and port information. I know the code belove still need correction from you any master. Thanks for advance..

link|improve this question

62% accept rate
feedback

1 Answer

up vote 0 down vote accepted

I don't know if this library includes something to stream the packets to the pc, but if not, you've a problem, because android only supports RTP streaming since version 3.1 (API level 12). if your level is lower, you have to write your own "rtp-server" which is able to stream the packets from your device to the pc.

for more information check out the sipdroid project. they have created their own "rtp-server": http://code.google.com/p/sipdroid/source/browse/trunk/src/org/sipdroid/sipua/ui/VideoCamera.java

UPDATE:

another possibility is to use the ffserver from the ffmpeg libraries, but therefore you have to compile the libraries for android. here is a small tutorial how to do this and how to work with the libraries: How to Build FFmpeg for Android

UPDATE2:

the spydroid application is a very good example to stream videos from an android device without any external libraries.

link|improve this answer
Yes i know that. In my case, the PC i used acts just as a trivial RTP server. I've also tried using VideoCamera.java in SipDroid. Yet it was really a very huge project so that i wonder from which i have to start. Is there anyone who got it working? – yanmii Sep 7 '11 at 13:30
a rtp server on your pc isn't enough! you need something that is able to send the packets from your phone to your pc. so you have to implement a kind of "rtp-server" in your application – Rithe Sep 8 '11 at 6:42
Why rtp packets couldn't sent from android phone to PC? I've tried using some class in SipDroid to create RTP packets from raw data within onPreviewFrame() arguments. For each frame, an rtp packet was created. The packet was then sent to PC address through sipDroid socket. Wireshark in my PC could catch that incoming packets well. But the player such VLC couldn't play them. Can you explain what were going wrong? Thanks for your answer. I'll try it as soon as i will understand the concepts. – yanmii Sep 12 '11 at 4:20
which kind of video codec do you use? – Rithe Sep 12 '11 at 14:27
I didn't define any codec in my code. Should i encode the preview frames into specific codec before packetizing them? – yanmii Sep 15 '11 at 5:23
show 4 more comments
feedback

protected by awoodland Apr 1 at 9:20

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.