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.

NSDictionary *options = [NSDictionary dictionaryWithObject:[NSNumber numberWithBool:YES] forKey:AVURLAssetPreferPreciseDurationAndTimingKey];
AVURLAsset *asset = [AVURLAsset URLAssetWithURL:URL options:options];

NSArray *keys = [NSArray arrayWithObjects:@"duration", @"tracks", nil];

__block bool loading = YES;

[asset loadValuesAsynchronouslyForKeys:keys completionHandler:^(void) {
            loading = NO;
}];

while (loading);

Please, help! My brain is melting.

link|improve this question

58% accept rate
feedback

2 Answers

Here is the code I use:

    NSURL *url = [NSURL fileURLWithPath:[[NSBundle mainBundle] pathForResource:@"intro" ofType:@"m4v"]];

    self.asset = [[AVURLAsset alloc] initWithURL:url options:nil];
    NSString *tracksKey = @"tracks";

    [self.asset loadValuesAsynchronouslyForKeys:[NSArray arrayWithObject:tracksKey] completionHandler:^{
// Other code here for AVPlayer
}];

I don't use any options or anything of that nature. I'm sure you've seen Apple's documentation example:

http://developer.apple.com/library/ios/#documentation/AudioVideo/Conceptual/AVFoundationPG/Articles/02_Playback.html

link|improve this answer
you did not get my question. anyway i've found solution – Denis Mikhaylov Apr 1 at 18:33
feedback

First remove (void) from block handler

[asset loadValuesAsynchronouslyForKeys:keys completionHandler: ^{
        loading = NO;}];

if not worked Try

[[[AVURLAsset alloc] initWithURL:contentURL options:...] autorelease];

instead of

[AVURLAsset URLAssetWithURL:URL options:options];

It might work

link|improve this answer
How is this supposed to help?! – Costique Jan 21 at 20:14
it makes absolutely no sense – Denis Mikhaylov Jan 21 at 21:02
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.