AndroidUSBCamera icon indicating copy to clipboard operation
AndroidUSBCamera copied to clipboard

UNABLE TO capture IMAGE

Open KingBrianZA opened this issue 4 years ago • 3 comments

when i click capture image it not saving it and the video is empty when i record

KingBrianZA avatar Oct 22 '20 21:10 KingBrianZA

perhaps your app did not request storage permission before staring the capturer code? You can read the code again to find the reason

quocnhat7 avatar Oct 26 '20 12:10 quocnhat7

I have the same issue, the video is empty when I record, did you solve it? @KingBrianZA

burcutopcu avatar Oct 26 '20 17:10 burcutopcu

I am facing the issue with video recording.

However solved the image capture issue solved by changing following lines in AbstractUVCCameraHandler.java file:

case MSG_CAPTURE_STILL:
		  thread.handleCaptureStill((String) msg.obj);
//                thread.handleStillPicture((String) msg.obj);
                break;

vp-007 avatar Oct 27 '20 07:10 vp-007