Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
3answers
17k views

Turn on torch/flash on iPhone 4

I know that the only way to turn on the flash and keep it on on iPhone 4 is by turning the video camera on. I'm not too sure of the code though. Here is what I am trying: -(IBAction)turnTorchOn { ...
8
votes
1answer
4k views

How to apply “filters” to AVCaptureVideoPreviewLayer

My app is currently using AVFoundation to take the raw camera data from the rear camera of an iPhone and display it on an AVCaptureVideoPreviewLayer in real time. My goal is to to conditionally apply ...
7
votes
1answer
5k views

Show camera stream while AVCaptureSession's running

I was able to capture video frames from the camera using AVCaptureSession according to http://developer.apple.com/iphone/library/qa/qa2010/qa1702.html. However, it seems that AVCaptureScreen captures ...
6
votes
1answer
2k views

How to use AVCaptureSession to stream live preview video, then take a photo, then return to streaming

I have an application that creates its own live preview prior to taking a still photo. The app needs to run some processing on the image data and thus is not able to rely on ...
5
votes
1answer
673 views

Capturing and manipulating microphone audio with AVCaptureSession?

While there are plenty of tutorials for how to use AVCaptureSession to grab camera data, I can find no information (even on apple's dev network itself) on how to properly handle microphone data. I ...
5
votes
2answers
958 views

UIImagePicker and AVCaptureSession access camera simultaneously

I'm wondering if it's possible to have an instance of an AVCaptureSession and UIImagePicker both accessing the camera simultaneously. I want to create an app that shows an ambient light ...
5
votes
4answers
2k views

Why AVCaptureSession output a wrong orientation?

So, I followed Apple's instructions to capture video session using AVCaptureSession: http://developer.apple.com/iphone/library/qa/qa2010/qa1702.html. One problem I'm facing is that even though the ...
4
votes
3answers
915 views

AVCaptureMovieFileOutput causing wrong orientation when saving photo to Camera Roll

I have an odd problem with captureStillImageAsynchronouslyFromConnection. If I save the image using jpegStillImageNSDataRepresentation while the video is mirrored, the image in the camera roll is ...
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 ...
4
votes
1answer
3k views

AVFoundation camera tutorial

Is there a basic tutorial for the AVFoundation for use with the camera anywhere? UIImagePicker isn't the right tool for my app and it looks like this is but I'm not sure how to get it going. I can ...
3
votes
1answer
145 views

Why is a greyscale OpenGL ES texture from AVCaptureSession displaced?

Here's the problem, I am working on a little project on the iPhone with OpenGL ES. I started with Brad Larson's ColorTracking App (Big thanks to Brad for providing it) and tuned it to my needs. ...
3
votes
1answer
364 views

When receiving an incoming call, recorded video is corrupted and AVFoundation methods are giving errors

I have a video recording app. Everything works fine. Except when a phone call is received while recording. When a phone call is received, I try to end the recording, however, any of my calls to ...
3
votes
1answer
489 views

Audio will make AVCaptureSession terminate

I wrote a app to record video from iPhone. It work fine but have one big problem. When AVCaptureSession start running and user try to play audio from thier library(iPod). This action will make ...
3
votes
2answers
2k views

Alternatives to creating an openGL texture from a captured video frame to overlay an openGL view over video? (iPhone)

This is mostly relevant for augmented reality type applications. Apple provides information on how to capture video frames (and save them as images if need be) with AVCaptureSession here: ...
3
votes
1answer
1k views

AVCaptureSession returning blank image on iPhone 3G only

I'm using Apple's example code for AVCaptureSession, and the UIImage that gets created is completely blank. This only happens on the iPhone 3G, along with a unique error that shows up on console that ...
3
votes
3answers
3k views

AVCaptureSession only getting one frame for iPhone 3gs

I have a piece of code that sets up a capture session from the camera to process the frames using OpenCV and then set the image property of a UIImageView with a generated UIImage from the frame. When ...
2
votes
1answer
244 views

iPhone image ratio captured from AVCaptureSession

I am using somebody's source code for capturing image with AVCaptureSession. However,I found that CaptureSessionManager's previewLayer is shotter then the final captured image. I found that the ...
2
votes
1answer
99 views

Capturing iPhone game audio

I'd like to capture the audio (music + sound effects) coming from my iPhone game. AVCaptureSession seems to have only the microphone as audio source. I'd like to capture the audio, put it into ...
2
votes
0answers
175 views

iOS: Resize CMSampleBufferRef directly?

I am getting CMSampleBufferRef buffers from an AVCaptureSession/AVCaptureVideoDataOutput on iOS 4. Can I resize these directly (without conversion)? I don't always need a full resolution feed and I'm ...
2
votes
0answers
338 views

Iphone saving a slow video with open gl filter

I am using avcapturesession with a preset AVCaptureSessionPresetMedium to capture video, i am applying effect on this video with opengl using shaders. I use assetWriter to write the video to an mp4 ...
2
votes
1answer
1k views

Using CATransform3D to create flip animation

I'm trying to recreate UIViewAnimationTransitionFlipFromRight (and left). My reason for doing so, as shown below, is to make changes to AVCaptureVideoPreviewLayer in the middle of the animation, when ...
2
votes
2answers
742 views

NSRunLoop and GCD queues

I am creating a c++ library for use on iOS (yes, unfortunately it has to be C++) which uses AVCaptureSession to capture video frames, which are delivered via the captureOutput callback. The C++ ...
2
votes
1answer
827 views

How to clean up AVCaptureSession in applicationDidEnterBackground?

I have an app that uses AVCaptureSession to process video. I like to write with zero memory leaks, and proper handling of all objects. That's why this post - How to properly release an ...
2
votes
3answers
3k views

How to get the Y component from CMSampleBuffer resulted from the AVCaptureSession?

Hey there, I am trying to access raw data from iphone camera using AVCaptureSession. I follow the guide provided by Apple (link here). The raw data from the samplebuffer is in YUV format ( Am I ...
2
votes
3answers
549 views

AVCaptureSession cancels background audio

Whenever I start an AVCaptureSession running with the microphone as an input it cancels whatever background music is currently running (iPod music for instance). If I comment out the line adding the ...
1
vote
1answer
42 views

How can I update the contents of a CALayer while the main thread is blocked?

An instance of AVCaptureVideoPreviewLayer continues to update its contents from the video capture stream even while the main thread is blocked. Is it possible to generally replicate this behaviour ...
1
vote
1answer
79 views

iOS camera application, flicker when switching from front to back camera

I'm trying to mimic the Camera app transition from the front to back camera.. it uses a UIViewAnimationOptionTransitionFlipFromLeft.. My current method is taking a picture with the front camera, ...
1
vote
1answer
77 views

AVCaptureSession CMSampleBuffer issue

I have a problem with releasing memory from CMSampleBuffer in my AVCaptureSession camera. This is my code for setting capture session. If I dispose imageDataSampleBuffer, app crashes. using ...
1
vote
0answers
91 views

create many AVCaptureVideoPreviewLayer (IOS Camera) from same AVCaptureSession and adding them to same layer

I created three AVCaptureVideoPreviewLayers from same AVCaptureSession and added them to the view's layer but what happens is the last one only i created appears I want all of the appears , how?!!
1
vote
2answers
70 views

UIView frame bounds coming as 0,0

Environment: Xcode 4, ios 5, ipod touch 4th generation with retina display I am trying to write a simple app that shows a video preview and capture a photo. For showing the preview, I am using the ...
1
vote
0answers
147 views

iPAD Streaming video to a ffmpeg server. front facing camera

This is a video chat type program. My project is to write a native ObjC app that will stream video from the front facing camera to a server. This server will format and relay to be sent to another ...
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
167 views

monotouch: WriteImageToSavedPhotosAlbum problems saving from camera

Please see gist here: https://gist.github.com/1387224 Essentially, I'm trying to save a photo from the AVCaptureSession, I'm grabbing the output from an AVCaptureStillImageOutput, converting it into ...
1
vote
0answers
178 views

AVCaptureSession with multiple Outputs?

I'm currently developing an iOS app that applies CoreImage to the camera feed in order to take photos and videos, and I've run into a bit of snag. Up till now I've been using AVCaptureVideoDataOutput ...
1
vote
2answers
362 views

Why does AVCaptureVideoOrientation landscape modes result in upside down still images?

I am using AVFoundation classes to implement a custom camera in my app. I am only capturing still images, not video. I have everything working but am stumped by something. I take into account the ...
1
vote
0answers
167 views

how can I make the torch/flash-on reliable when coming from multitask

When I leave the app and come back to it's 'on' sate sometimes it works fine by turning the torch/flash on but most of the time it either flashes or remains off. AppDeligate.m - (id) init { ...
1
vote
1answer
349 views

How to get raw image data (RGB value of each pixel) from iPhone camera when using in video capture mode?

I have to make an iPhone project that can process video data in realtime. This project have to be able to reconize the color of the object in the video frame. After I find the information relate to ...
1
vote
0answers
277 views

Adding audio input to AVCaptureSession stops AVPlayer

I am developing a music app where musical notation is displayed via a m4v video file played out using AVPLayer and an AVCaptureSession is used to preview and record both the video and audio of the ...
1
vote
1answer
254 views

UIlabel is not getting updated inside AVCaptureSession Delegate

I am learning objective c and doing a sample app to fetch video feed from iPhone camera. I was able to get the feeds from camera and display it on screen. Also I was trying to update some UILabel in ...
1
vote
1answer
650 views

AVCaptureSession output sample buffer save to CoreData

I am using an AVCaptureSession to capture frames from the camera using the setSampleBufferDelegate method from the AVCaptureVideoDataOutput class. The delegate method looks like the following. You can ...
1
vote
2answers
1k views

AVCaptureSession Abandoned memory - allocations - instruments

i use default AVCaptureSession to capture the camera view. Everything is working ok, i don't have any leaks, but when i use Allocations to find Abandoned memory after launching and closing ...
1
vote
2answers
3k views

Applying Effect to iPhone Camera Preview “Video”

My goal is to write a custom camera view controller that: Can take photos in all four interface orientations with both the back and, when available, front camera. Properly rotates and scales the ...
1
vote
1answer
576 views

AVCaptureSession returning blank image on iphone 4

I am trying to call the 'media capture putting it all together' example from AVFoundation Programming Guide. I keep getting a blank (black) image. Is there anything I need to call first to have this ...
1
vote
1answer
470 views

AVAudioPlayer stops when audio input is added to AVCaptureSession

Hi I'm working on karaoke app. It should record video with sound of a user singing a song. Lyrics and melody are are provided by app. With video recording everything was fine until I've added audio ...
1
vote
0answers
458 views

AVCaptureSession captureOutput high quality image

Is there any possibility to get a high-resolution image (like images from UIImagePicker) out of the captureOutput- method of the AvCaptureSession? My application should work like this: Fist I am ...
1
vote
1answer
618 views

Need to modify image before displaying on AVCaptureVideoPreviewLayer

I'm using AVCaptureSession to capture video from my iPhone 3G and I need to capture the image and change it before displaying on my AVCaptureVideoPreviewLayer. In my current implementation, I am ...
1
vote
1answer
2k views

getting UIImage out of captureStillImageAsynchronouslyFromConnection

I am writing an iPhone app that uses AVFoundation for the camera stuff and I'm trying to save the UIImage from the camera into the Camera Roll. It currently does it this way... [imageCaptureOutput ...
1
vote
1answer
653 views

AVCaptureSession pause?

I am using the AV Foundation for capturing images continuously after Apple released iOS 4.0 by following the codes given by, http://developer.apple.com/iphone/library/qa/qa2010/qa1702.html However, ...
1
vote
2answers
862 views

Make a button start the app

So I have made a custom UIButton and added it to the code and made the connections in interfacebuiler. I want the button to work as a on and off switch, how do I do this correctly? I'm a beginner at ...
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 ...

1 2 3