Hi Guys, Is there a way I can get each decoded video frame from Android if I start playing a video file through media player class?
private MediaPlayer vPlayer = new MediaPlayer(); vPlayer.reset(); vPlayer.setDataSource(locationOfVideoFile); vPlayer.prepare(); vPlayer.start(); After going through the above code I can hear the audio of the video that is being played, I understand that it can be done in other ways but I don't want to open a new window for the video playback. What I want to do here is to get each decoded frame of the video from Android somehow :) -- 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

