1
0
This repository has been archived on 2025-03-31. You can view files and clone it, but cannot push or open issues or pull requests.
2018-08-08 02:23:44 +03:00

24 lines
453 B
Objective-C

//
// NSURL+NSURL_Asset.m
// Snapchat
//
// Created by Michel Loenngren on 4/30/17.
// Copyright © 2017 Snapchat, Inc. All rights reserved.
//
#import "NSURL+Asset.h"
#import <SCBase/SCMacros.h>
@import AVFoundation;
@implementation NSURL (Asset)
- (void)reloadAssetKeys
{
AVAsset *videoAsset = [AVAsset assetWithURL:self];
[videoAsset loadValuesAsynchronouslyForKeys:@[ @keypath(videoAsset.duration) ] completionHandler:nil];
}
@end