QuickLook Generator音频

时间:2013-12-01 12:52:45

标签: cocoa quicklook

我正在尝试创建一个QuickLook插件来播放该软件包的QuickLook预览包中的音频,但我的尝试只显示默认的QL预览 - 更大的文件图标,文件名,类型,大小和修改日期。

我已成功将测试字符串显示为kUTTPlainText,并为目标UTI类型设置了我的XCode,并验证传递给QLPreviewRequestSetDataRepresentation的CFDataRef不是NULL。

以下是我在GeneratePreviewForURL函数中的基本代码:

NSURL *audioFilePath = @"the file path";
CFDataRef data = (__bridge CFDataRef)[NSData dataWithContentsOfURL:audioFilePath];
QLPreviewRequestSetDataRepresentation(preview, data, kUTTypeAudio, NULL);
return noErr;

有什么想法吗?是否可以从QuickLook预览中播放音频?

2 个答案:

答案 0 :(得分:0)

我的回答基于我的个人经历。

使用OSX 10.6.8上的Xcode 4.2,可以使用<src>标记的<audio>属性在基于HTML的QuickLook插件中加载音频文件:

OSStatus GeneratePreviewForURL(void *thisInterface, QLPreviewRequestRef preview, CFURLRef url, CFStringRef contentTypeUTI, CFDictionaryRef options)
{
    @autoreleasepool {

        if (QLPreviewRequestIsCancelled(preview)) return noErr;

        NSMutableString *html=[[NSMutableString alloc] init];
        NSDictionary *props;

        props=@{
            (__bridge NSString *)kQLPreviewPropertyTextEncodingNameKey:@"UTF-8",
            (__bridge NSString *)kQLPreviewPropertyMIMETypeKey:@"text/html",
            };

        [html appendString:@"<html>"];
        [html appendString:@"<body>"];
        [html appendString:@"<audio src=\"/tmp/AudioFile.mp3\" type=\"audio/mpeg\" controls=\"true\" autoplay=\"true\" />"];
        [html appendString:@"</body>"];
        [html appendString:@"</html>"];

        QLPreviewRequestSetDataRepresentation(preview,(CFDataRef)[html dataUsingEncoding:NSUTF8StringEncoding],kUTTypeHTML,(CFDictionaryRef)props);
    }

    return noErr;
}

现在,在Mavericks上使用Xcode 5.1,似乎没有使用cid:方案(我将在下面发布一个例子)完成这项工作:

OSStatus GeneratePreviewForURL(void *thisInterface, QLPreviewRequestRef preview, CFURLRef url, CFStringRef contentTypeUTI, CFDictionaryRef options)
{
    @autoreleasepool {

        if (QLPreviewRequestIsCancelled(preview)) return noErr;

        NSMutableString *html=[[NSMutableString alloc] init];
        NSDictionary *props;
        NSData *audioData=[NSData dataWithContentsOfFile:@"/tmp/AudioFile.mp3"];

        props=@{
            (__bridge NSString *)kQLPreviewPropertyTextEncodingNameKey:@"UTF-8",
            (__bridge NSString *)kQLPreviewPropertyMIMETypeKey:@"text/html",
            (__bridge NSString *)kQLPreviewPropertyAttachmentsKey:@{
                    @"AUDIO":@{
                            (__bridge NSString *)kQLPreviewPropertyMIMETypeKey:@"audio/mpeg",
                            (__bridge NSString *)kQLPreviewPropertyAttachmentDataKey: audioData,
                            },
                    },
            };

        [html appendString:@"<html>"];
        [html appendString:@"<body>"];
        [html appendString:@"<audio src=\"cid:AUDIO\" type=\"audio/mpeg\" controls=\"true\" autoplay=\"true\" />"];
        [html appendString:@"</body>"];
        [html appendString:@"</html>"];

        QLPreviewRequestSetDataRepresentation(preview,(CFDataRef)[html dataUsingEncoding:NSUTF8StringEncoding],kUTTypeHTML,(CFDictionaryRef)props);
    }

    return noErr;
}

我认为你应该report a bug to Apple为此!

答案 1 :(得分:0)

这里的一些评论指的是在基于HTML的Quicklook插件中使用音频(抱歉,信誉不足,无法添加其他评论)。

我最近在project I worked on中遇到了同样的问题,我需要嵌入一个音频文件,但是正如其他人所指出的那样,尝试在Quicklook插件中使用被引用为“ CID:”对象的数据失败。

我发现的解决方案是将数据以Base64编码的形式嵌入HTML中,如下所示:

<audio src="data:audio/wav;base64,{base64Data}">

,其中{base64Data}替换为实际的Base64数据。可以使用以下任何NSData对象将其转换为Base64字符串:

[dataObject base64EncodedStringWithOptions:0]

或者,如果您需要在HTML代码中多次引用该数据,则可以创建一个Javascript URL对象,并使用该对象:

let soundURL = new URL("data:audio/wav;base64,{base64Data}");
audioElement.src = soundURL;