I want to stream images from one video-capture Android application to another Android application in real time on the same phone. The former video application records and processes images. I would like to stream these images as they are created directly into the second Android application. I have control over the implementation of both applications and can make the video-capture Android app run as a service.
I have found a lot of support online around how to send video or images between applications via Intents or broadcasts. However these methods aren't done in real time and require the full video file. Any direction at all would be greatly appreciated.