Hi @BradLarson I am developing an app with GPImage. In this app video is recorded from camera and I have added a view as overlay on video. This view contains no. of objects.
Issue 1.
objects's position is changed with animation in view while recording . but this animation is not recorded in video.
Issue 2.
if any object is transparent then in recorded video, color of this object becomes darker., for example if I added an object with white background and 0.5 transparency, then this object is of grey color in recorded video.
Hi @BradLarson I am developing an app with GPImage. In this app video is recorded from camera and I have added a view as overlay on video. This view contains no. of objects.
Issue 1. objects's position is changed with animation in view while recording . but this animation is not recorded in video.
Issue 2. if any object is transparent then in recorded video, color of this object becomes darker., for example if I added an object with white background and 0.5 transparency, then this object is of grey color in recorded video.
below is my code for camera setup
-(void)setUpCamera { if(self.videoCamera != nil) { [self.videoCamera stopCameraCapture]; [self.videoCamera removeAllTargets]; }
self.videoCamera = [[GPUImageVideoCamera alloc] initWithSessionPreset:AVCaptureSessionPreset1280x720 cameraPosition:AVCaptureDevicePositionFront];
[self.videoCamera startCameraCapture]; self.videoCamera.audioEncodingTarget = self.movieWriter; }
Thanks in Advance