Tagged Questions

The AV Foundation framework provides an Objective-C interface for managing and playing audio-visual media in your Mac OS X or iOS application.

learn more… | top users | synonyms

20
votes
2answers
11k views

How do I export UIImage array as a movie?

I have a serious problem: I have an array with several UIImage objects. What I now want to do, is create movie from those images. But I don't have any idea how to do so. I hope someone can help me or ...
12
votes
2answers
2k views

Anyone have an example of how to write audio and video simultaneously using AVAssetWriter?

Been trying to figure this out with zero success. I can write video output no problem ... but once I try to introduce a second AVAssetWriterInput to include audio the final quicktime movie is jumpy ...
10
votes
5answers
6k views

How to properly release an AVCaptureSession

I'm using the AV Foundation classes to capture the live video stream from the camera and to process the video samples. This works nicely. However, I do have problems properly releasing the AV ...
9
votes
2answers
3k views

AVFoundation + AssetWriter: Generate Movie With Images and Audio

I have to export a movie from my iPhone application which contains UIImage from an NSArray and add some audio files in .caf format that have to start at pre-specified times. Now I have been able to ...
9
votes
2answers
3k views

What Techniques Are Best To Live Stream iPhone Video Camera Data To a Computer?

I would like to stream video from an iPhone camera to an app running on a Mac. Think sorta like video chat but only one way, from the device to a receiver app (and it's not video chat). My basic ...
9
votes
4answers
4k views

iOS 4: Remote controls for background audio

I'm currently attempting to set up background audio for an app I'm developing for iOS 4. The app doesn't have a dedicated music player viewController, however, unlike other background audio apps such ...
8
votes
3answers
1k views

Using AVAssetReader to read (stream) from a remote asset

My main goal is to stream a video from a server, and cut it frame by frame while streaming (so that it can be used by OpenGL). For that, I've used this code that I found everywhere on the Internet (as ...
8
votes
1answer
4k views

How do I use AVAssetWriter?

I’d like to take some video frames and encode them into a video. It looks like that’s exactly what AVAssetWriter was meant for, but no matter how I eyeball the docs and Google I can’t find any way to ...
8
votes
1answer
3k views

Why won't AVFoundation link with my XCode 3.2.3 iPhone 4.0.1 project?

I'm following the reference at http://developer.apple.com/iphone/library/qa/qa2010/qa1702.html to capture video from the iPhone camera. It's a fresh project aside from the code from that page. I added ...
7
votes
1answer
910 views

Mix video with static image in CALayer using AVVideoCompositionCoreAnimationTool

I am trying to mix video, coming from the camera with a static image (watermarking). I have checked around questions/answers here and some examples, including WWDC AVEditDemo from Apple and ended ...
7
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
2k views

How to record video of screen like Talking Tom Cat on iPhone?

I want to know if there is any public API in AVFoundation or any other framework which can be used to record screen like Talking Tom Cat does. I looked into AVFoundation and CoreVideo frameworks but ...
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
4answers
1k views

AVFoundation iOS 5

My apps runing on the appstore are using mp3 and video files that don't work since iOS5 update. I've installed xcode 4.2 and... When I test in the iPhone 5 Simulator or device I get the following ...
6
votes
2answers
413 views

Is it possible to use AVAssetReader to get back a stereo channel layout?

I'd like to be able to get back AudioBufferList from AVAssetReader which has 2 buffers so that I can process the left and right audio through an AudioUnit. I tried using the output settings below but ...
6
votes
4answers
3k views

How to use CVPixelBufferPool in conjunction with AVAssetWriterInputPixelBufferAdaptor in iPhone?

I have successfully created video from images using the following code -(void)writeImageAsMovie:(NSArray *)array toPath:(NSString*)path size:(CGSize)size duration:(int)duration { NSError *error = ...
6
votes
5answers
5k views

iPhone AVFoundation camera orientation

I've been tearing my hair out trying to get the AVFoundation camera to capture a picture in the correct orientation (i.e. the device orientation) but I can't get it to work. I have looked at ...
6
votes
3answers
940 views

What's the difference between all these audio frameworks?

In the documentation I see several frameworks for audio. All of them seem to be targeted at playing and recording audio. So I wonder what the big differences are between these? Audio Toolbox, Audio ...
5
votes
1answer
206 views

Inserting an HTTP stream into a AVMutableComposition

I am trying to insert an AVURLAsset of a AVPlayerItem that states AVPlayerItemStatusReadyToPlay into an AVMutableComposition like this: composition_ = [[AVMutableComposition alloc] init]; ...
5
votes
1answer
274 views

uploading or exporting a large video sucks memory and causes crash…how can I break it up?

I've implemented a way to upload video to youtube, etc. using multipart post, or save a video to the camera roll locally. However, with large videos I get watchdogged due to too large of a memory ...
5
votes
2answers
2k views

How to get Bytes from CMSampleBufferRef , To Send Over Network

Am Captuing video using AVFoundation frame work .With the help of Apple Documentation ...
5
votes
1answer
927 views

Capturing video while processing it through a shader on iPhone

I am trying to develop an iPhone app that processes/filters and records video. I have two sample apps that have aspects of what I need and am trying to combine them. AVCamDemo from the WWDC10 ...
5
votes
2answers
3k views

AVCaptureVideoPreviewLayer

AVCaptureVideoPreviewLayer *avLayer = [AVCaptureVideoPreviewLayer layerWithSession:session]; avLayer.frame = self.view.frame; [self.view.layer addSublayer:avLayer]; I use ...
5
votes
2answers
1k views

Extracting ID3 tags from MP3 over HTTP Live Streaming

I've been having quite a difficult time extracting ID3 information from an MP3 being streamed over Live HTTP Streaming (using the Wowza media server, if anyone is curious). I know that the tags (right ...
5
votes
3answers
3k views

Reading audio samples via AVAssetReader

How do you read audio samples via AVAssetReader? I've found examples of duplicating or mixing using AVAssetReader, but those loops are always controlled by the AVAssetWriter loop. Is it possible just ...
5
votes
4answers
4k views

AVFoundation, how to turn off the shutter sound when captureStillImageAsynchronouslyFromConnection?

I am trying to capture an image during a live preview from the camera, by AVFoundation captureStillImageAsynchronouslyFromConnection. So far the program works as expected. However, how can I mute the ...
5
votes
2answers
1k views

AVPlayerLayer - ReProgramming the Wheel?

I'm currently using an AVPlayer, along with an AVPlayerLayer to play back some video. While playing back the video, I've registered for time updates every 30th of a second during the video. This is ...
5
votes
3answers
2k views

Low FPS when accesing iPhone video output image buffer

I'm trying to do some image processing on iPhone. I'm using http://developer.apple.com/library/ios/#qa/qa2010/qa1702.html to capture the camera frames. My problem is that when I'm trying to access ...
5
votes
4answers
8k views

iPhone SDK 4 AVFoundation - How to use captureStillImageAsynchronouslyFromConnection correctly?

I'm trying to use the new AVFoundation frameworkt for taking still pictures with the iPhone. With a button press this methos is called. I can hear the shutter sound but I can't see the log output. If ...
5
votes
1answer
4k views

How do you use AVCaptureStillImageOutput, captureStillImageAsynchronouslyFromConnection in particular?

How do you setup the completion handler for: captureStillImageAsynchronouslyFromConnection:completionHandler: for AVCaptureStillImageOutput? (void)captureDelegate:(CMSampleBufferRef)buffer ...
5
votes
3answers
3k views

Changing the volume without a volume slider on an iphone

I need your help. How should I proceed to change the sound volume in my app. I don't want to use a volume slider. Instead I have an UIImageView which is a volume knob, in which I rotate clockwise to ...
5
votes
2answers
3k views

AVCaptureVideoPreviewLayer: taking a snapshot

I'm trying to emulate the animation seen in the default camera app, where a snapshot of the cameras viewfinder is animated into the corner of the apps display. The AVCaptureVideoPreviewLayer object ...
4
votes
2answers
542 views

Set maximum frame rate with AVFoundation in iOS 5

I believe this used to be done with captureOutput.minFrameDuration. However, this is deprecated in iOS 5. Instead I apparently need to use AVCaptureConnection's video.minFrameDuration. So I have my ...
4
votes
2answers
1k views

Having trouble creating UIImage from CIImage in iOS5

I'm using the AVFoundation framework. In my sample buffer delegate I have the following code: -(void)captureOutput:(AVCaptureOutput *)captureOutput ...
4
votes
1answer
477 views

AVAudioPlayer stops playing immediately with ARC

I am trying to play an MP3 via AVAudioPlayer which I thought to be fairly simple. Unfortunately, it's not quite working. Here is all I did: For the sake of testing, I created a new iOS application ...
4
votes
1answer
652 views

Video Recording using AVFoundation

I am trying to record video using AVFoundation. When I add video input only to the session, everything works fine but when I add an audio input to it, it stops recording the video.(Delegate method is ...
4
votes
3answers
818 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
2answers
2k views

Playing many different videos on iphone using AVPlayer

I'm working on a custom video player for iOS using AVFoundation. The idea is to be able to switch to a different video with a gesture (tap, swipe, whatever). Right now the player is working flawlessly ...
4
votes
1answer
543 views

Cropping image captured by AVCaptureSession

I'm writing an iPhone App which uses AVFoundation to take a photo and crop it. The App is similar to a QR code reader: It uses a AVCaptureVideoPreviewLayer with an overlay. The overlay has a square. I ...
4
votes
1answer
343 views

AVFoundation zoom help needed

I have been reading the AVFoundation docs and I have just not been able to find any sort of API for the zoom functionality of the camera. Could anyone give my any pointers about where to look for ...
4
votes
1answer
3k views

Looping a video with AVFoundation AVPlayer?

Is there a relatively easy way of looping a video in AVFoundation? I've created my AVPlayer and AVPlayerLayer like so: avPlayer = [[AVPlayer playerWithURL:videoUrl] retain]; avPlayerLayer = ...
4
votes
1answer
558 views

Making transparent video on iOS

I have two mp4 movies. One that has the actual video and one with the alpha values. My intention is that the first movie will get a transparent look, by merging it with the second one, where the ...
4
votes
1answer
504 views

How to add audio file contents in movie using AVFoundation on iOS4?

I am using AVFoundation to create a movie file (mp4) using images and sound files. I have successfully created movie file using AVAssetWriterInputPixelBufferAdaptor which appends CVPixelBufferRef ...
4
votes
1answer
477 views

iPhone Playing a sound clip while recording a video using UIImagePickerController … possible?

I'm using openAL to play sounds. I have a view controller that lets users upload a video. I want to give them a 1 minute warning sound so that they know to wrap things up. I tried using a call to ...
4
votes
1answer
2k views

Rotate CGImage taken from video frame

This is Apple's code (from Technical Q&A QA1702) for getting a UIImage from a video buffer. Unfortunately, the image returned is rotated 90 degrees. How do I edit this so that the image returned ...
4
votes
1answer
908 views

How do I add a still image to an AVComposition?

I have an AVMutableComposition with a video track and I would like to add a still image into the video track, to be displayed for some given time. The still image is simply a PNG. I can load the image ...
4
votes
2answers
3k views

iPhone Read UIimage (frames) from video with AVFoundation

Sorry for my english) Looking for information about read frames from a video with iPhone i found this project, http://www.codza.com/extracting-frames-from-movies-on-iphone/comment-page-1#comment-1116, ...
4
votes
2answers
2k views

Front Camera Video Recording iPhone 4?

i am trying to record a video from front camera of iPhone 4 using AVFoundation Framework with the help of WWDC samples i got from iPhone developer program. But i still cant get it to work..the video ...
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
2k views

How do I convert a CGImage to CMSampleBufferRef?

I’d like to convert a CGImage to CMSampleBufferRef and append it to a AVAssetWriterInput using the appendSampleBuffer: method. I’ve managed to get the CMSampleBufferRef using the following code, but ...

1 2 3 4 5 14