The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
35 views

AVFoundation export video with animation at specific time duration in previously recorded video?

I am using AVAssetExportSession to export video with my animation at specific time. It was running fine before 2 days. Now i changed something and it stopped working i don't know what is wrong with ...
7
votes
1answer
93 views

AVMutableComposition Video Creation Issue

I am creating video using AVMutableComposition and exporting it using AVAssetExportSession giving it preset AVAssetExportPresetHighestQuality. Video is created fine when video's dimension is small. ...
0
votes
1answer
30 views

ios AVMutuableComposition Track List and debugging

Can someone point me in the right direction to help me debug why my AVMutuableComposition for an AVPlayerItem in ios 6.1 does not load the track list correctly. What I am doing is creating an ...
1
vote
1answer
35 views

How to repeat audio track if video duration in longer than audio duration

I am mixing an audio and video file using AVMutableComposition. Below is my code for that: enter code here AVMutableComposition* mixComposition = [AVMutableComposition composition]; NSString ...
2
votes
0answers
28 views

Iphone: Audio Asset track not found when audio is created as a file, runtime in application

When I select audio as asset,I noticed Audio Asset track not found in selected asset. That "audio is created runtime as a file"(means created in application and saved in document directory). I have ...
2
votes
1answer
79 views

AvMutableComposition issues having black frame at the end

I capturing a video using AVCaptureConnection in my iOS app. After that I add some images in the video as CALayers. Everything is working fine but I get a black frame at the very end of the resulting ...
1
vote
1answer
106 views

Transform not working in AVMutableVideoComposition while exporting

My goal is to compose a set of clips recorded from the camera and export them at a certain preferred size. Of course, the video orientation needs to be rotated before exporting. I'm doing this by ...
0
votes
1answer
97 views

AVMutableComposition remove the video sound track

i have been trying to mix an audio (recorded) with a video (.mp4) using the AVMutableComposition, which means i need the 2 files to play in parallel after mixing, here is the code i used: ...
0
votes
1answer
206 views

How to merge the Live streaming video and audio in iphone sdk

I am developing video based application in IOS. In my application I need to merge video and audio.I have merged the local video and audio file but I am not able to merge the live streaming video and ...
1
vote
1answer
131 views

How to merge Audio and video using AVMutableCompositionTrack

In my application I need to merge audio and video and then I need to play the audio file in the Mediaplayer. How can I merge the audio and video in IOS. Is there is any source code for this. Please ...
1
vote
0answers
256 views

How To merge Audio and Video in ios

I like to merge audio and video in application using AVMutableComposition and also I have used the following code in application but I am to able to get the output data. -(void) playerFunction { ...
0
votes
1answer
175 views

merge an audio file with two video files iphone sdk

hi i am wondering how i would combine a given audio file with two video files. i am stuck when it comes to combining the audio but the video is fine, here is what i have done so far - ...
0
votes
1answer
64 views

Exception error trying to merge videos with AVMutableComposition: “objects cannot be nil”… but they don't appear to be nil?

My brain feels like scrambled eggs... I'm trying to merge video clips together. I have each clip URL stored in an NSMutableArray (arrayClipURL) & that's all good. When I print timeRanges & ...
0
votes
0answers
70 views

How to extact some parts of a video at exact timeintervals in ios

I am using GPUImage framework to record a video from camera. I want to extact multiple videos from the recorded video according to saved NSTimeIntevals. What I am doing is: When view loads I start ...
2
votes
0answers
197 views

iOS: Add empty / black frames to AVMutableComposition

Starting from just a CAF audio recording, I need to create a video file where the video track is just empty frames, and the audio track is this audio recording file. I know it's a strange use case, ...
0
votes
1answer
68 views

Can't play AVMutableComposition with sound

I'm currently working on an iPhone App, that only plays the Audio Track of an .mp4. The Player starts playing, but I can't hear any sound. Here is the Code: NSURL *videoUrl = [NSURL ...
1
vote
1answer
318 views

Composing video and audio using AVMutableComposition

I have a weird problem. In my app I am combining multiple audio and video files using the code below. The resulted video seems to work fine once I downloaded it from the device to the computer and ...
0
votes
0answers
128 views

Add CALayer to AVMutableComposition without AVAssetExportSession

Theres a similar question asked here But i want to play a video and add a CALayer without having to export it (ie waste time in exporting) I want to do this mainly for airplay(not airplay mirroring) ...
0
votes
0answers
110 views

How to use AVMutableVideoComposition to transition between tracks?

I am trying to do something that should be simple, transition between two or more video tracks using a AVMutableVideoComposition. I have seen AVEditDemo and as far as I can see I am doing the same ...
1
vote
0answers
169 views

layer rotation: CGAffineTranslate, CGAffineRotate and AVMutableVideoCompositionLayerInstruction

for days now I am trying to solve this, apparently I just can't get affine transforms. Basically, I would like to rotate a movie multiple times by 90 degrees. There is a good example here: Rotating ...
1
vote
0answers
107 views

Correcting Video Orientation in iOS

I am developing a video app in which user can merge different videos present in Asset Library. I am able to join the videos but I am facing the orientation issues. For example, if a video is landscape ...
1
vote
0answers
178 views

IOS adding transitions between videos

I'm trying to create a video By combining two videos It works properly until I tried to add transition between videos It gives me an unplayable video file. The code : AVMutableComposition* ...
3
votes
1answer
349 views

iOS - Reversing video file (.mov)

Requirement : It sounds like litte different but this is what I want to achieve. I want to make movie (.mov) file in reverse. Just like how we rewind the movie file. I also want maintain same frame ...
2
votes
2answers
829 views

AVMutableVideoComposition rotated video captured in portrait mode

I have used below code to add image overlay over video and then export the new generated video to document directory. But strangely,video gets rotated by 90 degrees. - ...
0
votes
0answers
152 views

AVMutableVideoCompositionLayerInstruction - Interpolation / Anti-aliasing

I am using a CGAffineTransform to scale down video clips (also rotating when required) using and AVMutableVideoCompositionLayerInstruction. It works all right with the exception of the quality being ...
2
votes
0answers
155 views

Avplayer not playing video when audio is present in the composition

I have been struggling with a problem where avplayer is not showing the video asset if I add audio to the composition. Here is the code as it is now: - (void)viewDidLoad { [super viewDidLoad]; ...
0
votes
1answer
441 views

Issues with video recording being upside down and AVMutableComposition rotating video

I've got a strange problem going on with video recording and putting said video into a composition. If the device is oriented landscape left (button on the left), the video records upside down and ...
0
votes
0answers
209 views

Combining videos from the photoLibrary with AVPlayer

I am trying to create an app that will combine videos in my phones photo library and save the combination back into the library. Here I take the video selected and store it as a .mov file in my ...
0
votes
0answers
323 views

AVMutableComposition with CATextLayer Exports CATextLayer but not video

I have an AVMutableComposition that should combine video, audio and a CATextLayer for export to an mov file. When I don't include the CATextLayer in my AVAssetExportSession the video exports ...
3
votes
1answer
555 views

Merge audio with video perfectly

I've been trying to merge audio with video using AVMutableComposition and AVExportSession. Everything works perfectly except that the audio and video sources don't have the same duration. So the ...
4
votes
1answer
922 views

Extract audio from video file

How can I extrace Audio from Video file without using FFmpeg? I want to use AVMutableComposition and AVURLAsset for solving it.e.g. conversion from .mov to .m4a file.
1
vote
1answer
986 views

Avmutable composition , lost orientation when adding audio to a video made with frames

I've been working on a project of video processing. Until now I succeeded in filtering live camera feeds, capturing still images, recording video from frames, recording audio, and lately succeeded in ...
0
votes
1answer
307 views

AVMutableCompositon AVMutableCompositionTrack m4a problems

I am able to successfully create a simple app that plays sound using the code below. The problem however is if I change the asset from being an mp3 to an m4a (with aac encoding). No sound is produced, ...
1
vote
2answers
522 views

Adding multiple video assets to AVMutableComposition

I have no problem adding one video asset and one audio asset to an AVMutableComposition and getting a playable mov file after using AVAssetExportSession. However, when I try to add another video track ...
0
votes
0answers
189 views

Using AVMutableComposition to trim an audio file

I am trying to use AVMutableComposition to take trim audio from the front and back of a file. The code below compiles and runs but does not seem to trim the audio data. Do I need to write this ...
2
votes
0answers
231 views

Create a CATextlayer that changes at an interval in an AVMutableVideoComposition

I have an app that allows a user to record a video in a mutable composition. I'd like to set some text that will come up and then change at an interval that I set when the user plays it back after an ...
0
votes
1answer
125 views

Facebook not Respecting preferredTransform flag on AVMutableCompositionTrack

I have an AVMutableComposition track which I am rotating 180 degrees as follows : if (shouldRotate) { //Code to rotate original main video 180 degrees if required. CGAffineTransform ...
0
votes
1answer
975 views

AVMutableComposition Rotates Videos

I've recently discovered an issue using AVMutableComposition and I'm looking for some insight into this. I want to be able to record video in two orientations - landscape left and right. When I ...
0
votes
1answer
251 views

Can't get AVMutableComposition in loop to play out of loop

Xcode for iOS The issue that I'm having is in the playback of an AVMutableComposition. I'm creating the composition then adding AVURLAssets to it inside a for loop. I'm adding everything as I would ...
1
vote
0answers
355 views

AVMutableComposition Black Screen on Replay After 3rd clip

In my app I am attempting to merge video clips dynamically. I have two properties which hold the previous recording and then the next recording to be appended to the end. This is basically acting as a ...
1
vote
0answers
153 views

How to add effects(like CurlUp, CurlDown etc) to movie created using objective c iPhone

i have created one movie using AVAssetWriter, AVMutableComposition with images array and audio song and i am saving that to Photo Library...know i want to add effects to that images while creating ...
0
votes
1answer
112 views

Not getting resulted movie in PhotoLibrary iPad

i am creating a movie with an array of images and a audio file and saving that created movie to photo library, in simulator i am getting correct movie with my array of image and audio file but while ...
1
vote
1answer
1k views

Using AVMutableComposition iPhone

I am using the below code, for streaming the two videos sequentially. But it is not showing any video in the simulator, its totally blank. Also how can I seek through these two videos. Like, if one ...
11
votes
1answer
330 views

Nested AVMutableComposition

I'm trying to use AVMutableComposition in a nested hierarchy. Therefor I have to put a composition into an other composition. Doing so results into the following error message: ...
1
vote
1answer
659 views

Merging two m4v Movie Files Using AVMutableComposition - Videos Will Not Merge

I am using the below code to try and merge two m4v files stored in the documents folder : CMTime insertionPoint = kCMTimeZero; NSError * error = nil; AVMutableComposition *composition = ...
9
votes
1answer
756 views

CATextLayer doesn't appear in an AVMutableComposition when running from a unit test

EDIT: The strangest thing: it seems that when running this code from a full app everything works, but I was always running the creation of the movie from my unit tests, and only there it didn't work. ...
3
votes
1answer
385 views

Setting AVMutableComposition's frameDuration

I'm playing with the AVEditDemo project, from Apple's WWDC 2010 sample pack, and I'm trying to change the frame rate of the exported video. The video is exported using an AVMutableComposition on which ...
0
votes
2answers
705 views

Exporting Audio+Video with AVAssetExportSession, but audio not being played in iphone4 4.2.1

I'm exporting audio.caf audio file with video.mp4 video and creating a new output.mp4 composition. It works fine with iOS 5.0, but with an iPhone4 4.2.1, the composition doesn't play the audio. NSURL ...
3
votes
1answer
340 views

Black frames in AVMutableComposition

This question is quite related to AVMutableComposition - Blank/Black frame between videos assets but as I am not using an AVAssetExportSession the answers doesn't fit my problem. I'm using an ...
0
votes
1answer
388 views

iPhone:How to combine multiple video files into single video file

In my app on the click of the button my animation starts and video recording also starts but again I tap the same button my animation pauses and my video recording file is generated then again I tap ...

1 2