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: moondark on Nov 11, '07 08:36:28AM
for matroska video suport, select a application or bundle, show package, blabla in Info.plist: before the text:

</dict>
</plist>
add the key:

<key>UTExportedTypeDeclarations</key>
	<array>
		<dict>
			<key>UTTypeConformsTo</key>
			<array>
				<string>public.movie</string>
			</array>
			<key>UTTypeDescription</key>
			<string>Matroska Video File</string>
			<key>UTTypeIconName</key>
			<string>generic</string>
			<key>UTTypeIdentifier</key>
			<string>com.apple.quicktime.mkv</string>
			<key>UTTypeReferenceURL</key>
			<string>http://www.matroska.org/</string>
			<key>UTTypeTagSpecification</key>
			<dict>
				<key>public.filename-extension</key>
				<array>
					<string>mkv</string>
				</array>
			</dict>
		</dict>
	</array>
try that.!

[ Reply to This | # ]