0

How to extract frames from video, process it, and combine it into video file.
Jcodec - very slow.
JavaCV - unsuitable, because it under GNU GPL.
OpenCV - because it uses OpenCV manager.
PS video from SD card, not camera.

pitfall
  • 166
  • 1
  • 4

1 Answers1

0

This isn't really a question for StackOverflow, but I'll try to point you in the right direction.

I asked a similar question here: Recording Live OpenCV Processing on Android

That's specific for OpenCV, but the end result was using JavaCV and FFmpeg to create video files. That's agnostic of the input.

Here is the FFmpeg part. You'd just need to swap out the camera for extracting the frames from wherever you're getting them. FFmpeg can probably do that as well.

Community
  • 1
  • 1
Kevin Workman
  • 41,537
  • 9
  • 68
  • 107