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 08, '07 11:27:57PM
Try adding something like that to the end of a plist of any application, like VLC, the application itself is not important. I'm not sure, but maybe it is possible to add the definition to Info.plist inside perian.component. something like that:

	<key>UTExportedTypeDeclarations</key>
	<array>
		<dict>
			<key>UTTypeConformsTo</key>
			<array>
				<string>public.movie</string>
			</array>
			<key>UTTypeDescription</key>
			<string>FLV Video File</string>
			<key>UTTypeIconName</key>
			<string>generic</string>
			<key>UTTypeIdentifier</key>
			<string>org.perian.flv</string>
			<key>UTTypeReferenceURL</key>
			<string>http://www.macromedia.com/</string>
			<key>UTTypeTagSpecification</key>
			<dict>
				<key>public.filename-extension</key>
				<array>
					<string>flv</string>
				</array>
			</dict>
		</dict>
	</array>


[ Reply to This | # ]