Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the '10.5: Add Quick Look support for certain file formats' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
10.5: Add Quick Look support for certain file formats
Authored by: tohvanah on May 15, '10 05:41:08PM
Why doesn't this work? I'm running 10.6.3

I'm attempting to add support for QuickView of DivX files with an extension of ".divx.part"

I added the following to Quicktime Player.app's Info.plist :


<array>
<dict>
<key>UTTypeConformsTo</key>
<array>
<string>public.movie</string>
</array>
<key>UTTypeDescription</key>
<string>DivX Video File</string>
<key>UTTypeIconName</key>
<string>generic</string>
<key>UTTypeIdentifier</key>
<string>com.divx.divx</string>
<key>UTTypeReferenceURL</key>
<string>http://www.divx.com/</string>
<key>UTTypeTagSpecification</key>
<dict>
<key>public.filename-extension</key>
<array>
<string>part</string>
</array>
</dict>
</dict>
</array>


[ Reply to This | # ]