I am trying to play a few movies, one after the other, in which the transition from onw moive to the next will be seamless to the user.
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.
I\'ve got an app where the user shoots some video, enters a title for it, and picks a music track. I\'ve got the music dubbing working with AVMutableComposition, but the titling is a bad hack -- just
My app reads audio and plays it back in a producer / consumer setup. The consumer thread requests new samples to render to hardware. The producer thread reads audio data from disk into its buffer usin
I see there is an app called iFile with a pause feature while recording video. How do they do this? I tried using AVMutableComposition classes and when the user pauses i cut a new video and then merge
I know you could merge multiple clips and create a single video by appending one after otherusing AVFoundation classes- AVURLAsset, AVMutableComposition, AVMutableCompositionTrack etc.
I am trying to capture video using the AV foundation api\'s. I want to provide functionality to pause the video and restart it. I am trying figure out how to implement the p开发者_运维知识库ause featu
I am currently recording video using AVFoundation api and have specified a fileUrl to write to: NSURL *fileUrl = [NSURL fileURLWithPath:[NSString stringWithFormat:@\"%@%@\", NSTemporaryDirectory(), @
I made an app with a feature to capture and save video. I have used AVFoundation for that and Apple\'s AVCam has been my guide.
I have seen some iPhone apps in whi开发者_C百科ch recorded voices are made into fun voices. Is it possible to programmatically change recorded voices into fun voices using an iOS library?