在自定义NSURLProtocol上使用AVURLAsset

时间:2012-10-18 20:55:20

标签: ios cocoa avfoundation nsurlprotocol

我编写了一个自定义的NSURLProtocol(称为“memory:”),它允许我根据名称从NSDictionary中获取存储的NSData项。例如,此代码注册NSURLProtocol类并添加一些数据:

[VPMemoryURLProtocol register];
[VPMemoryURLProtocol addData:data withName:@"video"];

这允许我通过像“memory:// video”这样的网址引用NSData。

以下是我的自定义NSURLProtocol实现:

NSMutableDictionary* gMemoryMap = nil;



@implementation VPMemoryURLProtocol
{
}

+ (void)register
{
    static BOOL inited = NO;
    if (!inited)
    {
        [NSURLProtocol registerClass:[VPMemoryURLProtocol class]];
        inited = YES;
    }
}

+ (void)addData:(NSData *)data withName:(NSString *)name
{
    if (!gMemoryMap)
    {
        gMemoryMap = [NSMutableDictionary new];
    }

    gMemoryMap[name] = data;
}

+ (BOOL)canInitWithRequest:(NSURLRequest *)request
{
    NSLog(@"URL: %@, Scheme: %@",
          [[request URL] absoluteString],
          [[request URL] scheme]);

    NSString* theScheme = [[request URL] scheme];
    return [theScheme caseInsensitiveCompare:@"memory"] == NSOrderedSame;
}

+ (NSURLRequest *)canonicalRequestForRequest:(NSURLRequest *)request
{
    return request;
}

- (void)startLoading
{
    NSString* name = [[self.request URL] path];
    NSData* data = gMemoryMap[name];

    NSURLResponse* response = [[NSURLResponse alloc] initWithURL:[self.request URL]                                                                
                                                        MIMEType:@"video/mp4"
                                           expectedContentLength:-1
                                                textEncodingName:nil];

    id<NSURLProtocolClient> client = [self client];
    [client URLProtocol:self didReceiveResponse:response              
                             cacheStoragePolicy:NSURLCacheStorageNotAllowed];
    [client URLProtocol:self didLoadData:data];
    [client URLProtocolDidFinishLoading:self];
}

- (void)stopLoading
{

}

我不确定这段代码是否有效,但这不是我遇到的问题。尽管注册了自定义协议,但当我尝试在此代码中使用URL时,从不调用canInitWithRequest:

NSURL* url = [NSURL URLWithString:@"memory://video"];
AVURLAsset* asset = [[AVURLAsset alloc] initWithURL:url options:nil];

AVAssetImageGenerator* imageGen = [AVAssetImageGenerator assetImageGeneratorWithAsset:asset];
CMTime time = CMTimeMakeWithSeconds(0, 600);
NSError* error;
CMTime actualTime;

CGImageRef image = [imageGen copyCGImageAtTime:time
                                    actualTime:&actualTime
                                         error:&error];

UIImage* uiImage = [UIImage imageWithCGImage:image];
CGImageRelease(image);
如果我使用“memory:// video”,

图像总是为零,但如果我使用“file:/// ...”则工作正常。我错过了什么?为什么没有调用canInitWithRequest? AVFoundation是否仅支持特定的URL协议而不支持自定义协议?

由于

1 个答案:

答案 0 :(得分:2)

当然,用于支持特定网址方案的基础 - 作为电子书开发人员,我已经看到这种情况发生在通过epub://zip://等网址加载的任何媒体类型上。在这些情况下,在iOS 5.x及更早版本中,通过相关代码进行跟踪会结束QuickTime方法,该方法将URL方案与少数受支持的方案进行比较:filehttp,{ {1}},https以及iTunes使用的任何内容 - 我忘了它的名称。

在iOS 6+中,AVFoundation中有一个新的API,它可以在这里提供帮助。虽然我没有亲自使用它,但它应该如何运作:

ftp

有了这个,您只需要在某处实现NSURL* url = [NSURL URLWithString:@"memory://video"]; AVURLAsset* asset = [[AVURLAsset alloc] initWithURL:url options:nil]; //////////////////////////////////////////////////////////////// // NEW CODE START AVAssetResourceLoader* loader = [asset resourceLoader]; id<AVAssetResourceLoaderDelegate> delegate = [SomeClass newInstanceWithNSURLProtocolClass: [VPMemoryURLProtocol class]]; [loader setDelegate: delegate queue: some_dispatch_queue]; // NEW CODE END //////////////////////////////////////////////////////////////// AVAssetImageGenerator* imageGen = [AVAssetImageGenerator assetImageGeneratorWithAsset:asset]; CMTime time = CMTimeMakeWithSeconds(0, 600); 协议,这非常简单it contains only one method。由于您已经实现了AVAssetResourceLoader,所以您的所有实际工作都已完成,您可以直接将实际工作交给Cocoa加载系统或您的协议类。

同样,我会指出我还没有实际使用它,所以上面的内容完全是理论上的。