It's great to hear that DVDpedia makes work fun. We have quite a few teachers and professors. It's one of the perks of developing for the Mac community - we have friendly and interesting users; we have met from directors at the BBC to a freelancer living in the Outback. Now we must go visit L.A. to met our famous actors and writers. My brother is an animation fanatic and teaches animation as well, here is a
few fishes he created for a lesson in dynamics.
DVDpedia is smart in that if you tag the link as "Movie" then it assumes it must be a movie and treat it as such. What is the dot extension on the files? This way I can add the extension to DVDpedia for the next version so it will recognize it as a movie right away (when it fails to recognize the file as a movie it lists the application that would open it and this is why you get app:divx).
After installing Xcode you can verify the version of sqlite3 by running this command in Terminal, it will print out the version number:
- Code: Select all
sqlite3 -version
I also have Tiger and I never did install a new version of sqlite3 so it must have come from Xcode. If I am wrong and you still have the old version you can intsall the new version once you have Xcode with he following commands in the terminal:
- Code: Select all
curl -O http://www.sqlite.org/sqlite-3.5.2.tar.gz
tar -xzvf sqlite-3.5.2tar.gz
cd sqlite-3.5.2
./configure
make
sudo make install
The Terminal is like magic since there is so much that can be done there if you happen to know the right words (speak friend and enter).