Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
1answer
2k views

AVCapture appendSampleBuffer

I am going insane with this one - have looked everywhere and tried anything and everything I can thinks of. Am making an iPhone app that uses AVFoundation - specifically AVCapture to capture video ...
2
votes
2answers
345 views

AVCaptureMovieFileOutput — trimming the file while writing

I am recording video using AVCaptureMovieFileOutput. Instead of retaining the captured video for the entire recording time, however, I would like only to retain the last 2 minutes of video. In ...
1
vote
1answer
193 views

Proper way to optimize my AVCaptureSession?

I got my AVCaptureSession to work and it duplicates the Camera.app UI almost perfectly, however, after a few seconds the application will crash and I just cannot find what I'm doing wrong. I really ...
1
vote
1answer
175 views

Problem in camera activities in ios4

hi so far i have used UIImagePickerController for camera activities in IOS3. But in IOS4 the ImagePickerController is not working properly. When i tried to capture image it shows either a white ...
1
vote
0answers
317 views

iPhone AVCapture: accessing the CVPixelBuffer is slow

I've been using CoreGraphics to create a bitmap context around the pixel buffer and extract an image using CGBitmapContextCreateImage, then using CGContextDrawImage to draw that image in another ...
0
votes
1answer
62 views

AVCaptureSession specify resolution and quality of captured images obj-c iphone app

Hi I want to setup AV capture session to capture images with specific resolution (and, if possible, with specific quality) using iphone camera. here's setupping AV session code // Create and ...
0
votes
2answers
34 views

While playing a sound does not stop recording Avcapture

I have a view where a video record, then I have a section AVAudioPlayer, the problem is that when the sound, you stop registazione Video. testAudioPlayer = [[AVAudioPlayer alloc] ...
0
votes
0answers
31 views

iOS AVCaptureSession: Camera View does not show up after app restart

I have successfully implemented a camera capture function with overlay templates on it. All is working fine. But when i close the app, and re-enters again, the camera view is not longer there. What i ...
0
votes
0answers
76 views

iOS AVFoundation image capture too slow

I am creating session and AVCaptureStillImageOutput this way: __imageCaptureSession = [[AVCaptureSession alloc] init]; __imageCaptureSession.sessionPreset = AVCaptureSessionPresetPhoto; ...
0
votes
0answers
115 views

AVCaptureDevice - view not from Iphone cam but from url jpg

I'm trying modify AROverlayExample to geting view not from IPHONE Cam but from some url jpg. Why ? My webcam in home is set to stream images to http://localhost/cam.jpg and its ok. NExt in office I ...
0
votes
0answers
413 views

iOS 5 - AVCaptureDevice setting focus point and focus mode freezes the live camera picture

I'm using the following method to set point of focus since iOS 4: - (void) focusAtPoint:(CGPoint)point { AVCaptureDevice *device = [[self captureInput] device]; NSError *error; if ...
0
votes
1answer
200 views

iOS: How to how to record video to screen on a landscape app?

This is doing my head in. I am working from this sample project: https://github.com/jj0b/AROverlayExample This works perfectly. only problem is it is a portrait app. So when I rotate the device ...
0
votes
1answer
51 views

Create 100 X 100 frame around camera screen

I am working on a camera based app. It is related to histogram. When I open up the app it should start the camera and it should make frame of 100 x 100 in the center of the screen. The camera starts ...
0
votes
0answers
191 views

Is AVCaptureStillImageOutput ever suitable for creating video on an iOS device?

I'm exploring various options for creating video from "screenshots" of an iOS device (the app is an OpenGL ES game). The most promising option so far seems to be calling glReadPixels to bring over ...
0
votes
1answer
250 views

How to get an AVCapture Timecode?

I'm working on a video capture app using the AVFoundation framework, based on the AVCam sample by Apple. I'd like to implement functionality to set a maximum video length, and have the capture ...
0
votes
1answer
422 views

Why rotate Image in OpenCV without rotation code?

I am taking photo using AVCaptureStillImageOutput, AVCaptureSession, AVCaptureVideoPreviewLayer and display it in UIImageView. Its work properly. But, After display image in UIImage. I am detecting ...
0
votes
1answer
1k views

iPhone video capture (best method)

I am curious about the new APIs for iPhone iOS: AVCapture... Does this include a documented way to grab a screenshot of the camera preview? The doc seems a bit confusing to me, and since it is out of ...
-1
votes
1answer
186 views

Using xcode to access rear camera, iphone iOS5

I'm sorry if this is already answered... All I need is how to fire up the rear facing camera and display it in an image view...no taking pictures, no accessing the photo library, just turning on the ...