Associating with iSquint
Wednesday, November 29th, 2006I’m loving iSquint for converting videos to formats that are QuickTime and/or iPod friendly, but was frustrated with the inability to open videos with it from the Finder (right-click, “Open With”). A little hacking of the Info.plist and a rebuild of LaunchServices and I’m in business.
iSquint.app/Contents/Info.plist and then open the original with either Property List Editor or your favorite editor (TextMate, in my case). Now, modify the CFBundleTypeExtensions array (reference) so that it has the video extensions you wish to handle. Looking at VLC, I came up with the following (for the entire CFBundleTypeExtensions key):
<key>CFBundleDocumentTypes</key>
<array>
<dict>
<key>CFBundleTypeExtensions</key>
<array>
<string>3gp</string>
<string>avi</string>
<string>mov</string>
<string>mp4</string>
<string>mpeg</string>
<string>mpg</string>
<string>wmv</string>
</array>
<key>CFBundleTypeName</key>
<string>DocumentType</string>
<key>CFBundleTypeRole</key>
<string>Editor</string>
</dict>
</array>
I’m not sure how long it would take for this to appear in the Finder normally, but I had to rebuild the LaunchServices database anyway. Once that was done, I was in business!


