-
Notifications
You must be signed in to change notification settings - Fork 49
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Video recording and Frame processing simultaneously #106
Comments
@bipinvaylu Technically it is possible but it might require some api level changes might even have to deprecate some current apis. Can you provide some more description about your use case like what kind of formats you use and what is the exact use case that you are trying to implement. Preview frames and video can be very different in terms of size and quality. |
Thanks @pvasa for a quick response, Yeah, Actually I am trying to achieve my use case since last few days. But unable to find any sustainable solution so far. Please find the proper use case details here: https://stackoverflow.com/questions/54091648/camera-2-api-to-preview-record-and-extract-the-preview-frame-to-firebase-face-d Btw, If you can provide me some help/insight for the same. I can work out that way and if able achieve, I will push it here as well for others. |
@bipinvaylu the way to achieve this would be to provide both |
@bipinvaylu Release v3.0.1-beta now supports this feature. Video capturing and frame processing can be achieved simultaneously by using below methods
app:cameraMode="continuous_frame|video_capture"
camera.cameraMode = Modes.CameraMode.CONTINUOUS_FRAME or Modes.CameraMode.VIDEO_CAPTURE |
My use cases required to Preview, Record and Process the frames simultaneously, I have used this codebase, It seems promising but it's still, not supporting recording and frame processing at the same time. It would be nice if you can incorporate the same if you have some time.
The text was updated successfully, but these errors were encountered: