Tagged Questions
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 ...
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
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
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
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
943 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
207 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
275 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
1answer
934 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
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
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
660 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
821 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
548 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
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
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
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 ...
4
votes
2answers
5k views
iPhone: AVCaptureSession capture output crashing (AVCaptureVideoDataOutput)
I'm capturing video and converting it to a CGImage to do processing on it. It will work for a ~10 seconds, get memory warning and then crash (usually it says data formatters were temporarily ...
4
votes
2answers
3k views
UIImage created from CMSampleBufferRef not displayed in UIImageView?
I'm trying to display a UIImage in real-time coming from the camera, and it seems that my UIImageView is not displaying the image properly. This is the method which a ...
3
votes
2answers
104 views
Is it possible to cancel download of a remote AVPlayerItem?
Is it possible to cancel the download of a remote AVPlayerItem without removing or stopping the video from the player itself?
I've tried [item.asset cancelLoading], but it doesn't seem to be the ...
3
votes
1answer
189 views
Create an application that creates a video from iphone screen and add audio from headphones / audio input
I m trying to create a tutorial video from ipad screen as done in this application (ShowME) Using AVAssetWriter I am able to capture a video of the screen.
I tried using AVCaptureDevice, but Its not ...
3
votes
2answers
239 views
Recording Avdio and Video using AVFoundation frame by frame
How to record audio and video using AVFoundation frame by frame in iOS4?
3
votes
1answer
302 views
How to set a transparent background for an AVVideoComposition?
Update - I've added a 50 reputation bounty for answering this question!
I have an application that needs to put together some videos and photos to create a movie out of them. I am using ...
3
votes
2answers
684 views
Basic AVAssetReader problems reading video samples
I'm looking to read video samples via AVAssetReader and I'm running into all kinds of road blocks. Can some one post code that sets up an AVAsset from a video named 'Movie.m4v' from the application ...
3
votes
3answers
905 views
Airplay: Playing a Movie from MPMoviePlayerController results in only audio being streamed to Apple tv
Setting up Airplay was easy enough.
self.moviePlayer = [[[MPMoviePlayerViewController alloc] initWithContentURL:url] autorelease];
[self.moviePlayer setAllowsAirPlay:YES];
However, when I try to ...
3
votes
1answer
1k views
AVAssetExportSession does not export audio tracks
I have an application that allows to append multiple video assets and add one or multiple audio tracks to a composition. All seems to work, I can play the resulting composition using AVPlayer ...
3
votes
2answers
4k views
How can I do fast image processing from the iPhone camera?
I am trying to write an iPhone application which will do some real-time camera image processing. I used the example presented in the AVFoundation docs as a starting point: setting a capture session, ...
3
votes
3answers
237 views
Is it possible to play just a part of an mp3 file with AVAudioPlayer? If yes, how?
Hi I have a locally stored 5:00 minutes mp3 files in my iPhone app.
I would like to know if it is possible to play just an interval from that file using AVAudioPlayer after it is readyToPlay, lets ...
3
votes
2answers
2k views
AVFoundation - Retiming CMSampleBufferRef Video Output
First time asking a question here. I'm hoping the post is clear and sample code is formatted correctly.
I'm experimenting with AVFoundation and time lapse photography.
My intent is to grab every Nth ...