Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
2answers
9k views

This code to write video+audio through AVAssetWriter and AVAssetWriterInputs is not working. Why?

I've been trying to write a video+audio using AVAssetWriter and AVAssetWriterInputs. I read multiple posts in this forum of people saying they were able to accomplish that, but it is not working for ...
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 ...
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 ...
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 ...
7
votes
3answers
663 views

OpenGL to video on iPhone

I'm currently working on a project to convert a physics simulation to a video on the iPhone itself. To do this, I'm presently using two different loops. The first loop runs in the block where the ...
7
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
2answers
893 views

AVAssetWriter Woes

I'm trying to use AVAssetWriter to write CGImages to a file to create a video from images. I've gotten this to work successfully in three different ways on the simulator, but every method fails on an ...
5
votes
1answer
1k views

AVAssetImageGeneratorCompletionHandler - how to set or return variables?

i´m using the AVAssetImageGenerator to get images from a movieclip without playing it before. Now i´ve got a question how to set up variables in the loop of a handler? Is it possible? I´m getting ...
3
votes
1answer
577 views

how to record screen video as like Talking Tomcat application does in iphone?

hey i m trying the record the gameplay of my game so that i can upload its video to youtube from device itself...m trying to do same thing as Talking tomcat app for iphone..recording the video then ...
3
votes
2answers
844 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
1answer
1k views

How to write a movie with video AND audio using AVAssetWriter?

I want to export a movie with AVAssetWriter and can't figure out how to include video and audio tracks in sync. Exporting only video works fine, but when I add audio the resulting movie looks like ...
3
votes
1answer
911 views

iOS: How to make a movie with a series of images using AVAssetWriter

I have seen this question asked many times in different forms both here and in other forums. Some of the questions get answered, some do not. There are a few where the answerer or author claims to ...
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
259 views

iOS: Cropping a CMSampleBufferRef before appending to AVAssetWriterInput

I'm currently experimenting with CoreImage, learning how to apply CIFilters to a camera feed. Presently I'm succeeded in taking a camera feed, applying a filter and writing the feed to an ...
2
votes
4answers
747 views

Pixel formats, CVPixelBufferRefs and glReadPixels

I'm using glReadPixels to read data into a CVPixelBufferRef. I use the CVPixelBufferRef as the input into an AVAssetWriter. Unfortunately the pixel formats seem to be mismatched. I think ...
2
votes
3answers
1k views

OpenGL ES 2.0 to Video on iPad/iPhone

I am at my wits end here despite the good information here on StackOverflow... I am trying to write an OpenGL renderbuffer to a video on the iPad 2 (using iOS 4.3). This is more exactly what I am ...
2
votes
1answer
247 views

AVAssetWriterInputPixelBufferAdaptor pixelBufferPool goes NULL after some time

I'm using the pixelBufferPool within an AVAssetWriterInputPixelBufferAdaptor to create pixel buffers for use with the append method. After creating 4 buffers, the pixelBufferPool property becomes ...
2
votes
1answer
348 views

AVAssetReader making mp3 file bigger?

It appears that my song file that I am trying to grab from the user library is being blown up to 50MB after the code below. However, I know this song to be 7.2MB. I'd like to attach the music file ...
2
votes
1answer
618 views

Is it possible to route AVAssetWriter to a network stream in iOS4?

AVAssetWriter takes a file URL as an argument and writes buffers appended to its AVAssetWriterInput to that file. AVAssetWriter* assetWriter = [[AVAssetWriter alloc] initWithURL:[NSURL ...
2
votes
0answers
533 views

AVAssetWriterInput and readyForMoreMediaData

Is AVAssetWriterInput's readyForMoreMediaData updated in a background thread? If readyForMoreMediaData is NO, can I block in the main thread and wait until the value changes to YES? I'm using an ...
2
votes
0answers
316 views

Issue with setting and retrieving the value of AVMetadataCommonKeyCreator

I have a video recording app for the iPhone. I am using AVAssetWriter for writing the recorded video data to a file. I am also interested in embedding custom metadata to the file. For eg: I want to ...
2
votes
1answer
676 views

Memory warning when using dispatch_async in iOS

I have the code below that captures jpeg frames at 30fps and records the video in mp4 format. I'm trying to wrap the processFrame method in a dispatch_async call so that the recording process will not ...
2
votes
2answers
553 views

Using iPhone as input to mediastreamsegmenter - HTTP Live Streaming

I started working on HTTP live Streaming protocol and felt very interesting. Went through the complete document provided by Apple. I tried Vedio On Demand and Live Streaming as well using VLC player ...
2
votes
2answers
3k views

How to use AVAssetReader and AVAssetWriter for multiple tracks (audio and video) simultaneously?

I know how to use AVAssetReader and AVAssetWriter, and have successfully used them to grab a video track from one movie and transcode it into another. However, I'd like to do this with audio as well. ...
2
votes
1answer
2k 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
2answers
2k views

CMSampleBuffer from OpenGL for video output with AVAssestWritter

I need to get a CMSampleBuffer for the OpenGL frame. I'm using this: int s = 1; UIScreen * screen = [UIScreen mainScreen]; if ([screen respondsToSelector:@selector(scale)]){ ...
2
votes
2answers
3k views

create video from array of UIImages and save the video to iPhone library. AVAssetLibrary +AVFoundation

Problem in saving video to iPhone Library. i have an array of UIImages,and two buttons ,"convertToVideo"&"saveToiPhoneLib" -(IBAction) convertToVideo { NSArray *paths = ...
2
votes
2answers
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
4answers
1k views

IPhone RGBA to ARGB

Im using glReadPixels to grab screen shots of my opengl scene and then turning them into a video using AVAssetWriter on IOS 4. My problem is i need to pass the alpha channel to the video which only ...
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
39 views

AVassetwriter not recording audio

Im having trouble getting audio recorded into a video using avassetwriter on the iPhone. I am able to record video from the camera on the phone no problem but when I try to add audio I get nothing, ...
1
vote
2answers
49 views

.wav to any compressed form from AVAssetWritter ios

Well the problem I am facing right now is a size issue problem. I am allowing the user to to choose a song from their library and then chop it up into pieces and then be able to use the .wav or .mp3 ...
1
vote
1answer
89 views

AVAssetWriter adds green frame to movie output

I'm finishing an iPhone app that saves a movie to the photos album. The movie source is an array of images. I have it making movies and it's putting them in the photos album quite nicely, but it ...
1
vote
1answer
72 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
1answer
405 views

Video Encoding using AVAssetWriter - CRASHES

I have a function that is supposed to re-encode a video to a manageable bitrate on iphone/ipad. Here it is: *UPDATED WORKING CODE, NOW WITH AUDIO! :) * -(void)resizeVideo:(NSString*)pathy{ ...
1
vote
0answers
181 views

requestMediaDataWhenReadyOnQueue:usingBlock: creates more than one block in parallel -> crashes

I am trying to append CGPixelBufferRefs to an AVAssetWriterInput to create a QuickTime movie. I'm using the following code: BOOL __block shouldContinue = YES; [self.assetWriterInput ...
1
vote
1answer
202 views

Creating a white noise audio track using AVAssetWriter

I'm currently using AVAssetWriter to generate a Quicktime mov. The video track is generated correctly. Now I'd like to add a "garbage" mp4a audio track. The audio can just be white noise. What I'm ...
1
vote
2answers
190 views

ios: How to resume AVAsset video based writing session

I'm working on video editing application for iphone/ipod touch. My app simply asks user to choose one of already existing videos in the camera roll directory, then frame by frame changes pixel ...
1
vote
1answer
492 views

How do I use AVAssetWriter to write AAC audio out in ios?

I am using an AVCaptureSession to capture audio and video samples from the devices microphone and camera. I am then attempting to write the CMSampleBuffers (Using AVAssetWriter and ...
1
vote
0answers
332 views

H264 stream writing using AVAssetWriter issue

i am working on an application that receives the H264 stream from network and writes that stream to the MOV file. For writing to MOV I am using AVAssetWriter(with AVAssetWriterInput settings nil). ...
1
vote
0answers
115 views

Can someone explain source time, movie time, presentation time, etc.?

In my iOS app, I need to save an image as a short video segment. I have this working using AVAssetWriter and AVAssetWriterPixelBufferAdaptor, thanks to some of the great posts on this site, but I've ...
1
vote
1answer
186 views

AVAssetWriter / AVAudioPlayer Conflict?

Weeks ago, I posted this thread regarding problems I was having with AVAssetWriter: AVAssetWriter Woes Further research seems to lead to a conflict using AVAssetWriter while playing audio with ...
1
vote
0answers
292 views

Capturing the screen with AVAssetWriter— Works fine on simulator but on device creates black video

i m trying to capture the frame buffer data and convert into video for my iphone game.. i m using AVAssetWriter to accomplish this thing. The code is working fine on simulator but not on device ...
1
vote
1answer
439 views

AVAssetWriterInput output settings not rendering valid NSData

I am using AVAssetWriterInput to take an mp3 file from the user, and email it (DRM free only). I got the process to work when using PCM, but when I try mp3, or m4a, or caf, I either get a file that ...
1
vote
2answers
2k views

Make movie file with picture Array and song file, using AVAsset

I'm trying to make movie file using a picture array and an audio file. To make movie with a picture array i used the big post by zoul here. All is perfect, I have my movie with my picture. However ...
1
vote
3answers
675 views

AVAssetWriterInputPixelBufferAdaptor returns null pixel buffer pool

I'm sure something's wrong with my buffer attributes, but it's not clear to me what -- it's not well documented what's supposed to go there, so I'm guessing based on CVPixelBufferPoolCreate -- and ...
1
vote
1answer
2k views

Using AVAssetWriter to create a movie from images is not working as expected on a 3GS device

The call to appendPixelBuffer is returning NO on 3GS device (IOS 4.1), but is working well on iPhone 4 devices. The following call to appendPixelBuffer is the source of the problem: ...
1
vote
0answers
296 views

Is it possible to record video with AVAssetWriter and still playback background sounds

I am using AVCaptureSession to record video asset with no sound. But is it possible to configure AVAudioSession to continue iPod audio playing background music?
1
vote
1answer
234 views

Is it possible to use a quality between AVAssetExportPresetMediumQuality and AVAssetExportPresetHighestQuality with AVAssetExportSession?

I am using AVAssetExportSession to export a video out of my iOS app, like this: AVAssetExportSession *exportSession=[AVAssetExportSession exportSessionWithAsset:composition ...

1 2