Tagged Questions

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 ...
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 ...
7
votes
1answer
913 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 ...
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 = ...
5
votes
1answer
929 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
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
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 ...
4
votes
1answer
488 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
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 = ...
3
votes
2answers
103 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
212 views

AVPlayer seekToTime: Poor performance while looping short videos

this is my first question, but I've readed StackOverflow for years. Well the thing is that I must concatenate a set of videos (MP4) in a particular order, and the last one must loop continuously. ...
3
votes
1answer
211 views

Capture and play new media types with AVFoundation

I've got a very non-standard AVFoundation question and as a relative newbie to the iOS world I could really use some guidance from the experts out there - I'm working on an app that lets the user ...
3
votes
2answers
683 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
2answers
754 views

AVAssetWriterInputPixelBufferAdaptor and CMTime

I'm writing some frames to video with AVAssetWriterInputPixelBufferAdaptor, and the behavior w.r.t. time isn't what I'd expect. If I write just one frame: [videoWriter ...
3
votes
3answers
2k views

Pre-buffering for AVQueuePlayer

Does anyone know if AVQueuePlayer starts buffering the next AVPlayerItem when the current item is about to finish playing? I know there's nothing in the docs to suggest this, I'm asking mostly if ...
3
votes
1answer
1k views

AVAssetReader doesn't read whole file?

I am reading audio assets from the iPod library on iOS with an AVAssetReader and AVAssetReaderTrackOutput. However, when i read the data and put the chunks back together, the file isn't exactly the ...
3
votes
2answers
3k views

Reading samples via AVAssetReader

How do you read 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 to ...
2
votes
1answer
11 views

Converting Linear PCM file to M4A file in iOS

Using built-in iOS libraries, how can I convert a linear PCM file recorded using AVAudioRecorder to m4a. I know I can record it originally in that format, but I need it in linear PCM first. I'm ...
2
votes
2answers
60 views

Creating video from a set of images

I wanted to create a video from a set of images where i have taken a majority of my code with reference to: How do I export UIImage array as a movie? The code that i have written is : NSError ...
2
votes
1answer
236 views

iOS - Automatically resize CVPixelBufferRef

I am trying to crop and scale a CMSampleBufferRef based on user's inputs, on ratio, the below code takes a CMSampleBufferRef, convert it into a CVImageBufferRef and use CVPixelBuffer to crop the ...
2
votes
1answer
90 views

IOS can I use AVAudioPlayer on the appDelegate?

I have a TabBarController with two tabs and I want to play music on both tabs. Right now I have my code on the main appDelegate NSURL *url = [NSURL fileURLWithPath:[[NSBundle mainBundle] ...
2
votes
1answer
278 views

iOS AVFoundation captureStillImageAsynchronouslyFromConnection:completionHandler: Hanging Indefinitely

I've implemented a camera using the AVFoundation framework provided in iOS 4 & 5, but have been experiencing an inconsistent issue with the ...
2
votes
1answer
75 views

can't access audio file after converting it

Ive been using the following code to convert aac / mp3 files into pcm. The code works fine. But right after the convert ion is done if I try to play that file or do anything with it using ...
2
votes
1answer
114 views

Make AVFoundation not stop iPod music

Im using the AVFoundation framework to play sound files. The problem im having is that its stopping music from playing when the audio file gets used, im not saying play both files continuously, but ...
2
votes
1answer
160 views

Send video data to server from Objective-C client

I'm looking to send data from the webcam of a client Mac application to a server application currently written in Java (but this could change if there was a good reason). I am using AVFoundation and ...
2
votes
2answers
461 views

Can I record videos on iPhone 3G using AVFoundation?

Is it possible to record video on iphone 3g with ios 4.1 using AVFoundation? I m able to record audio and can pick still image using AVFoundation but not able to record video.
2
votes
1answer
393 views

AVURLAsset for long sound on ipod

long time reader, first time asker... I am making a music app which uses AVAssetReader to read mp3 data from the itunes library. I need precise timing, so when I create an AVURLAsset, I use the ...
2
votes
1answer
500 views

How can I handle separate tracks of an AVURLAsset independently?

Here's my goal: I would like to load a .3gp movie file into an AVURLAsset. I would then like to take the video track and pump the output frames into an OpenGL ES texture. This will be the video ...
2
votes
1answer
1k views

How do you add to an AudioBufferList with an AVAssetReader?

I have been working on reading in an audio asset using AVAssetReader so that I can later play back the audio with an AUGraph with an AudioUnit callback. I have the AUGraph and AudioUnit callback ...
2
votes
1answer
288 views

check if music is played

i use avaudioplayer to play own music in my app. is there a possibility to check if music from the avaudioplayer is playing?
2
votes
1answer
469 views

AVAssetExportSession dealloc crashes in iOS 4.3

Update: I thought the issue was low memory; it's not. This error happens consistently in 4.3, and doesn't happen in 4.1/4.2 even under quite low memory conditions. This is in a small Objective-C ...
2
votes
1answer
1k views

AVAssetWritter does not work with audio

I'm trying to get audio to work with the video for an iOS application. The video is fine. No audio is recorded to the file (My iPhone speaker works.) Here's the init setup: session = ...
2
votes
1answer
2k views

CoreAnimation, AVFoundation and ability to make Video export

I'm looking for the correct way to export my pictures sequence into a quicktime video. I know that AV Foundation have the ability to merge or recombine videos and also to add audio track building a ...
2
votes
4answers
655 views

Is it possible to record iPhone calls with the latest iOS SDK 4.2?

Hi is it possible to record the audio stream during a voice call with any of the tools the latest ios sdk provides: AVFoundation, Core Audio, etc.? If it is possible is there any documented way to do ...
2
votes
1answer
1k views

Memory Management issue with AVAssetWriter in iPhone?

I have successfully created video from uiimages using AVAssetWriter. But as soon as the writer starts writing video theres a sudden rise in the memory allocation in the instruments. The spike in the ...
2
votes
1answer
1k views

How can I track the progress of AVAssetWriter’s writing?

How can I calculate the progress of an AVAssetWriter process? So if I have something like: [assetWriterInput requestMediaDataWhenReadyOnQueue:queue usingBlock:^{ while (1){ if ...
2
votes
1answer
1k views

How to append a UIImage or CGImage to an AVAssetWriter?

Is it possible to convert a UIImage instance to a CMSampleBufferRef so that it can be appended to a specified output file using AVAssetWriter's appendSampleBuffer: method? If so ... how? Thanks
1
vote
1answer
22 views

Reloading AVMutableComposition

I have a AVMutableComposition that I've associated with an AVPlayer. It seems if I add tracks to this composition the AVPlayer doesn't play the added tracks unless I set the composition on the player ...
1
vote
2answers
35 views

Memory problems with [AVAssetWriterInput requestMediaDataWhenReadyOnQueue:usingBlock:]

I’m writing a library to export assets to a file using AVFoundation. I create a reader, a writer, connect the inputs and outputs to these and then call the requestMediaDataWhenReadyOnQueue method on ...
1
vote
1answer
55 views

Use AVFoundation to modify audio metadata

I'm working on an app which needs to modify metadata of audio files. I have played with Apple's official demo AVReaderWriterOSX. I have tried to set the metadata of AVAssetWriterInput and ...
1
vote
2answers
205 views

iOS - Scale and crop CMSampleBufferRef/CVImageBufferRef

I am using AVFoundation and getting the sample buffer from AVCaptureVideoDataOutput, I can write it directly to videoWriter by using: - (void)writeBufferFrame:(CMSampleBufferRef)sampleBuffer { ...
1
vote
1answer
73 views

AVFoundation Record Video for web playback — has to download WHOLE file before playback starts

I have an iPad app that records video and sends it to my SaaS application using AVFoundation. My web application then reads the file, and plays it using JWPlayer. The problem I am having, is that ...
1
vote
1answer
149 views

AVQueuePlayer/AVPlayer loading notification?

I have an AVQueuePlayer (which obviously extends AVPlayer) that loads a playlist of streaming audio. Streaming is all working fine, but I'd like to have an activity indicator to show the user audio is ...
1
vote
1answer
77 views

Reduce Noise While Recording users Voice in iphone Application?

I am trying to record users voice with background music playing behind. I am able to set a session and play background and record concurrently using AVAudioSessionCategoryPlayAndRecord. But it's ...
1
vote
0answers
48 views

Get segments from AVPlayerItemTrack

I am trying to work with a m3u8 playlist in an AVPlayer. I get the playlist through the web and I want to get the segments that each video track has or the current segment of the video. I am using ...
1
vote
1answer
133 views

Combining two .caf files on iPhone

I've looked and looked for an answer, but can't seem to find one. Lots have asked, but none have gotten answers. I have an app that records audio using AVAudioRecorder. Now I just want to merge two or ...
1
vote
1answer
252 views

How do I run AVAssetReader at the same rate on a secondary thread as it does on the main thread?

I have an OpenGL iOS application and am using an AVAssetReader to read frames from a video and texture a simple model with the video content. Everything is working as expected, except I am using the ...
1
vote
0answers
184 views

AVVideoCompositionCoreAnimationTool and custom CALayer: setNeedsDisplay each frame?

I'm using the AVVideoCompositionCoreAnimationTool with a AVAssetExportSession to draw overlays into a video on iPhone. particularly i'm looking to draw something really similar to Timecode into the ...
1
vote
0answers
267 views

AVFoundation crop captured still image according to the preview aspect ratio

My question is mostly similar to this one: Cropping image captured by AVCaptureSession I have an application which uses AVFoundation for capturing still images. My AVCaptureVideoPreviewLayer has ...
1
vote
1answer
107 views

Playing song through MPMusicPlayerController and using AVCaptureSession at the same time

I have a problem where I have setup an AVCaptureSession with an audio and video input and a capture preview layer. All works great until I try to play a song using MPMusicPlayerController, this ...

1 2 3 4