How to use an iPod. A demonstration by Ari and Mirra.
Friday, April 2nd, 2010
If you set HD to ‘on’ and go fullscreen, or click through to the video’s vimeo.com page and find the download link low in the right column, you can see this one at 1080p resolution. If the embedded video doesn’t play smoothly, try pausing it and waiting for it to finish loading before hitting play, or toggle HD to off.
pizza and the dream of not being filmed from ZachFine on Vimeo.
A little video of an evening of pizza-making and camera-dodging.
Shot and uploaded at 1080p resolution, so feel free to toggle HD to on and play this one back fullscreen.
Video shot with Canon Digital REBEL T2i DSLR set to the “superflat” picture style. Canon 50mm f1.8 lens.
Converted to Apple Prores, edited in Final Cut Pro 7.0.2, graded in Apple Color.
Exported to the QuickTime H264 at 1080p24, restricted to 8000kbps, audio 44.1Khz 16-bit AAC 128kbps.
Music: the first third of “free space incesticide” by Eight Frozen Modules.
I shot the same setup with 5 different color style settings, and will be looking at all of them in Apple Color in order to determine which setting I prefer.
I’m well aware that tradition holds that no camera test is complete without a photo of a beautiful lady holding a redundant umbrella and smiling at the photographer, but I decided plastic grapes would just as ably serve that function1.
Enter the Browser’s Thumbnail column:
To enable this column, just right-click any column header, and select “Show Thumbnail” from the contextual popup menu:
Just as in icon view, you can click on each thumbnail and drag left and right to scan through the clip’s contents. If you press the “control” key any time while scanning through the clip and keep it held down as you release the mouse button, you’ll change the “poster frame” displayed in the thumbnail for that clip to the last frame displayed.
It’s worth noting that the thumbnails, at least in the case of the 16:9 clips I used for these screen captures, are not displayed at the proper aspect ratio. It is also worth noting that the thumbnail doesn’t change size if the user widens the Browser’s Thumbnail column. I’m sure these small issues will be fixed in some future version of FCP (wink wink nudge nudge Apple ;) .
Canon EOS Rebel T2i (Body Only) – $799.99
I’d expect the fact that they’re taking preorders means they have a shipment coming to their distribution centers from Canon. Just a guess.
When I bought my T2i, it seemed only the kits with lens were available for purchase. I decided I didn’t mind having the extra lens, as then I could loan my Rebel XT to people with a decent lens that I didn’t care too much about. But maybe that was just rationalization and if the body-only version of the T2i were available I’d have gone for it.
My previous post, on how to get a discounted price on a Canon T2i, might still apply (if you want to buy the camera on eBay).
For those wondering why I’m so excited about this camera; It’s because the T2i is a way to shoot decent HD video with a relatively large sensor and great lenses for under $1000. Such tools for good-looking budget filmmaking are hitting the streets and will change the nature of online video, if not also segments of television and theatrical film.

Remember Microsoft Bing? The search engine that Microsoft will pay you to use? That’s step 1.

Microsoft’s cashback takes a while. But a month or so after your purchase, they’ll deposit the cashback value directly to your paypal account. eBay has their own sort of cashback program going on, called “eBay Bucks”. For your purchase, you’ll earn 2% of its value in eBay Bucks, which can be used for future transactions. So within a month or two after your purchase, you’ll have received 10% of the total in Bing Cashback and eBay bucks.
I’m sure if you can wait six months a better deal will come along. Maybe the Canon T2i will be available at Dell Small Business store and you’ll be able to get %15 off buy using a coupon. But if, like me, you’re ready now to replace your several-generations-old DSLR, this is probably not a bad way to go.

I was at work the other week, doing a repetitive task of the sort that provides an opportunity to listen to music. I’d recently purchased an album and had stored it in the iTunes library on my home computer, but had not yet loaded the new songs onto my iPhone. There had to be a way to make iTunes at home share its music to my work computer so that I could listen to the new music. A few internet searches turned up some interesting information as well as a solution.
If a copy of iTunes is running on any other computers that are on the local network, those instances of iTunes will notice the advertisement of an iTunes share on the network, and will display the name of that iTunes share in the left column of the window. The user can then click that shared Library and play songs from it on their computer. The playlists and songs stream over the network from the sharer to the sharee. Unfortunately in my case, iTunes running on my laptop at work couldn’t see the iTunes share served from my computer at home, because my home computer is miles away and not connected to the same local network as my laptop.
I recognized a familiar Unix trick in their tip: Port forwarding over a secure shell connection. Of course! If one could make a secure shell connection (abbreviated in the command “ssh”) to a remote computer, one could then do what’s called “port forwarding”, and forward all communications on a port on the remote machine to a port on the local machine. This would transport both the advertisement of the iTunes share and the actual sharing itself from the remote network to the local network. I’d never actually executed port forwarding over ssh before, but I’d heard of it, and between their example and the man page for the ’ssh’ command, it all became clear. The tip first requires that one knows the IP address of the remote computer, and then shows the command to connect to the remote machine, grab any communications on port 3689 (the port used by iTunes sharing), transport it encrypted to the local machine, and repeat it on port 36890 of the local machine. The command looks like this (hover your mouse over any portion of the command to see an explanation of that portion):
$ ssh -fNL *:36890:127.0.0.1:3689 USER@REMOTE-HOST
After that command successfully concludes, the iTunes share on the remote computer will be accessible to computers on the local network, except they won’t be able to see that it’s there. The second command in their document uses OS X’s built-in “dns-sd” command to advertise that there is an iTunes share on port 36890 of the local computer. It is this advertisement that will make the iTunes share appear in the sidebars of any copy of iTunes running on the network:
$ dns-sd -R "Remote iTunes" _daap._tcp local 36890 &
I was confident that this would all work, but for one snag. Like most people, my home computer only has an address on its local network, it doesn’t have its own internet address. The computer is connected to a router. The router has an IP address on the internet and an IP address on the local network and uses what’s called “Network Address Translation” to distribute connections from the outside internet to all the computers on the local network. If I tried to connect to the IP address of my home connection, I’d be connecting to the router, not my home computer with its trove of music. Luckily a solution was within reach.
Wherever you go, there’s your Mac.
Back to My Mac puts any Mac OS X Leopard- or Snow Leopard-based Mac you use within easy reach. MobileMe finds your remote Mac computers over the Internet and displays them in the Finder on the Mac you’re using. So you can connect from anywhere with just a click. Edit and save documents, open applications, and move folders. With Back to My Mac Screen Sharing, you can control your remote Mac as though you’re sitting in front of it.
I have been using the Back to My Mac service to copy files to and from my remote computer from work, and to occasionally take control of my home computer’s screen from work. The service must be punching through the router using port-forwarding and registering a temporary domain name for my home computer which can be accessed from the outside internet. I figured that if I could find out this domain name, it would be worth a try to use it to connect from work to the home computer and set up ssh port forwarding of the iTunes share. A search turned up this article:
10.5: How to use ssh using ‘Back to My Mac’
The writer of that article explains exactly how to determine the Back to My Mac domain name at which one can find their remote computer. When I tried the first method described, it did not work. As it turns out, that method works for short computer names, but my home computer’s name is long, and Back to My Mac truncates it and adds a few random (?) numbers when assigning the domain name. The second method they mention does work. I can easily determine the name assigned to my remote machine by choosing “Shell > New Remote Connection…” in the Terminal application’s menubar. In the “New Remote Connection” window that appears, I choose ’ssh’ in the service column and my remote computer’s name in the ‘Server’ column. There, in the field at the bottom of the New Remote Connection window will appear the command for making a ssh connection to my home computer. It’s not the same ssh connection command that will be used to do port forwarding, but the last portion of it does show me the exact domain name that will resolve to my home computer.
$ ssh -fNL :36890:127.0.0.1:3689 myComputerName.myMobileMeID.members.mac.com.
$ dns-sd -R "Zach's Remote iTunes FTW" _daap._tcp local 36890 &