Editing android VideoView frames

Environment:

Nexus 7 Jelly Bean 4.1.2

Problem:

I'm trying to make a Motion Detection application that works with RTSP using VideoView.

I wish that there was something like an onNewFrameListener

videoView.onNewFrame(Frame frame)

I've tried to get access to the raw frames of an RTSP stream via VideoView but couldn't find any support for that in the Android SDK.

I found out that VideoView encapsulates the Android's MediaPlayer class.

So i dived into the media_jni lib to try and find a way to access the raw frames, But couldn't find the byte buffer or whatever that represents a frame.

Question:

Anyone has an idea where or how can i find this buffer and get access to it ?

Or any other idea of implementing a Motion Detection over a VideoView ?

Even if it's sais that i need to recompile the AOSP.


You can extend the VideoView and override its draw(Canvas canvas) method.

  • Set your bitmap to the canvas received through draw .
  • Call super.draw() which will get the frame drawn onto your bitmap.
  • Access the frame pixels from the bitmap.

    class MotionDetectorVideoView extends VideoView {
    public Bitmap mFrameBitmap;
    ...
        @Override
        public void draw(Canvas canvas) {
            // set your own member bitmap to canvas..
            canvas.setBitmap(mFrameBitmap);
            super.draw(canvas);
            // do whatever you want with mFrameBitmap. It now contains the frame.
            ...
            // Allocate `buffer` big enough to hold the whole frame.
            mFrameBitmap.copyPixelsToBuffer(buffer);
            ...
        }
    }
    
  • I dont know whether this will work. Avoid doing heavy calculation in draw , start a thread there. Try and let me know..


    In your case I would use the Camera Preview instead the VideoView, if you are working with live motion, not recorded videos. You can use a Camera Preview Callback to catch everyframe captured by your camera. This callback implements :

    onPreviewFrame(byte[] data, Camera camera)
    Called as preview frames are displayed.
    

    Which I think it could be useful for you.

    http://developer.android.com/reference/android/hardware/Camera.PreviewCallback.html

    Tell if that is what you are searching for.

    Good luck.

    链接地址: http://www.djcxy.com/p/66244.html

    上一篇: 如何使用vb.net中的滚轮放大一个Picturebox

    下一篇: 编辑android VideoView框架