The avassetexportsession tag has no wiki summary.
4
votes
1answer
309 views
How can I export an mp3 file from an iOS device's iPod library?
In my iOS application I'm trying to export an mp3 file from the iPod library to the app's documents directory on the device. Currently I'm trying to use AVAssetExportSession but it's not working for ...
2
votes
1answer
603 views
AVVideoCompositionCoreAnimationTool and CALayer in portrait mode?
I'm trying to bake a CALayer into portrait-mode video (on export) using an AVMutableComposition, an AVMutableVideoComposition and a AVVideoCompositionCoreAnimationTool on iOS 4.3. This all works in ...
2
votes
1answer
511 views
AVAssetExportSession no audio (iPhone), works on iPad
We're trying to take an existing video with audio (.mov) and make a more email friendly version. Seems pretty straightforward and the code below does just what we need ... almost.
On an iPad2 ...
1
vote
2answers
115 views
AVMutableComposition - Blank/Black frame between videos assets
I'm currently trying to put 5 videos back to back using AVMutableComposition like so:
[mixComposition insertTimeRange:CMTimeRangeMake(kCMTimeZero, asset1.duration) ofAsset:asset1 ...
1
vote
1answer
395 views
How to properly export CALayer on top of AVMutableComposition with AVAssetExportSession
I know this question was asked before (for example here and here) but I just can't figure out what I'm doing wrong.
I have an AVMutableComposition that I use to combine some video clips with some ...
1
vote
1answer
256 views
AVAssetExportSession missing audio track when exporting on device
I run the export on the simulator and everything works great. I run it on the device and the video gets exported but there's no audio. This leads me to believe that I must be using an audio format ...
0
votes
0answers
16 views
How to change the volume of a track in AVMutableComposition
After hitting my head with the wall several times and trying different approaches that take too long to process (alter the MP3 file for different volumes) I decide to post this question to everyone ...
0
votes
0answers
13 views
Objective-C AVAssetExportSession only audio
How can I use AVAssetExportSession to only export audio to, let's say, an *.aif or an *.mp3 file? Whenever I try providing anything other than @"com.apple.quicktime-movie" for the ...
0
votes
0answers
22 views
How to merge video and audio files?
question:
My question is : How to merge video and audio files that has almost the same duration?
I searched and got some answers to this question. However when I try the code they gave, it just does ...
0
votes
1answer
22 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 ...
0
votes
0answers
28 views
Error from AVAssetExportSession:
I got the error from AVAssetExportSession
The operation couldn’t be completed. (AVFoundationErrorDomain error -11800.)
when I use AVAssetExportSession to convert form m4a file to another m4a file.
...
0
votes
1answer
38 views
Exporting audio from 3gp video files with AVAssetExportSession
I am trying to export the audio from a 3gpp video file and it is not working... Does anyone know what I may be doing wrong? Here is the code I am using:
NSArray *paths = ...
0
votes
1answer
35 views
Save audio with fade in fade out with setVolumeRampFromStartVolume not working in iOS
I am trying to cut an audio file for an iPhone project. I can cut it and save it, but any fade in / fade out that I try to apply doesn't work, the audio file is just saved cutted but not faded.
I am ...
0
votes
1answer
96 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 ...
0
votes
2answers
282 views
AVAssetExportSession not working in ios5
In my application I am combining two audio files using AVAssetExportSession and it works fine in earlier ios versions.But in ios5 device its not working. What i am getting is an error
...
0
votes
2answers
130 views
Bad Access error on AVAssetExportSession on exportAsynchronouslyWithCompletionHandler call
I am attempting to trim a video using the following code:
AVURLAsset *videoAsset = [AVURLAsset URLAssetWithURL:[NSURL URLWithString:[NSString ...
0
votes
1answer
139 views
AVAssetExportSession progress gets stuck on ipad but not on simulator
This piece of code works fine on the simulator. However, when I try to run the export on my iPad, it always hangs at progress value 0.14583-ish. Can somebody help me figure out why? been stuck on this ...
0
votes
1answer
101 views
pause a video in AVExportSession
I have a video which has to be paused at various points in time and then made into a new video.
I use insertEmptyTimeRange in AVMutableComposition to pause the video and then use AVExportSession, ...
0
votes
0answers
185 views
AVAssetExportSession Saves Segment Data?
Ok, so I have a bunch of audio files sitting in a directory. My goal is append these files together sequentially and make them the single audio track of an AVAsset. I would like each one of these ...
0
votes
1answer
178 views
How to export a wav file to m4a with 22kHz with AVAssetExportSession?
I have a 22kHz wave file and want a 22kHz m4a file. AVAssetExportSession with the preset AVAssetExportPresetAppleM4A automatically converts my wav to 44kHZ. I've tried different presets and nil to ...
0
votes
1answer
287 views
AVURLAsset loadValuesAsynchronouslyForKeys: completionHandler: never fires on device
I'm using next snippet to loadValues synchronously, so loading = NO never fires.
And I have the same problem with AVAssetExportSession exportAsynchronously.
It's all not working only on device.
...
0
votes
0answers
233 views
ERROR :exportAsynchronouslyWithCompletionHandler more than once. Resume exportation in avfoundation
Hi i'm developing an iphone application that creates an AVAssetExportSession object to save and create a video file. All is ok,(the file is created and correctly saved in the documents folder) except ...
0
votes
0answers
76 views
Colors do not match when joining two clips with AVMutableComposition
I am joining two video clips with AVMutableComposition and exporting the result using AVAssetExportSession. The problem is that one of the clips ends up having a slightly different color tint than the ...
0
votes
0answers
255 views
AVAssetExportSession with and without break points
I have simple video compression code in low quality conversion.I am testing my code in iphone 4 with IOS-4.2.1.The problem is when I test my code on device without break points the code failed to ...
0
votes
0answers
129 views
is it possible to add an asset to AVMutableComposition for reverse playback?
I would like to add several assets to my AVMutableComposition and when I export it using AVAssetExportSession I would like one asset to be played backwards. Is that possible?
Or could I use ...