Search code examples
androidvideo-streamingrtsp

How can I convert video streaming to images in android?


I'm new in here and in android development. I'm trying to convert a video that I receive from an rtsp stream (h.264 I think) to images (any kind of images).

Is there's any way to do it? Thanks!


Solution

  • I'm not sure what your requirements are, do you need every frame? However what i would try out is the following:

    As far as I can remember you can save any View as jpg or png. So I would as a first try, play the video using a SurfaceView and then attempt to save the SurfaceView to a file.

    Here a link on how to save a View to jp or png.