You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
First good job with your lib ! I wanted to use a video capture like that in y personal application.
But the callback is never call with debug mode :
So I checked in your code and I saw that you use camera kit.
mCameraView.captureVideo(new CameraKitEventCallback<CameraKitVideo>() {
@Override
public void callback(CameraKitVideo cameraKitVideo) {
if (videoListener != null) {
videoListener.onVideoTaken(cameraKitVideo.getVideoFile());
}
}
});
and Still not called in debug mode...
But in their documentation to capture an video they used CameraView.startRecordingVideo() but I did not see that in your code. http://docs.camerakit.website/#/?id=capturing-video
Maybe I did not undestand how it works.... Thanks in advance for your response
The text was updated successfully, but these errors were encountered:
Hi,
First good job with your lib ! I wanted to use a video capture like that in y personal application.
But the callback is never call with debug mode :
So I checked in your code and I saw that you use camera kit.
and Still not called in debug mode...
But in their documentation to capture an video they used
CameraView.startRecordingVideo()
but I did not see that in your code.http://docs.camerakit.website/#/?id=capturing-video
Maybe I did not undestand how it works.... Thanks in advance for your response
The text was updated successfully, but these errors were encountered: