Category: Tech
Fuji X100
Officially announced today. $1200 dollars, incidentally, is what I paid six years ago for a Bessa R2A and a Zeiss 35/2.0 lens.
Motorla Xoom
I was excited about the Motorola Xoom until I saw the price: $800. The top-of-the-line iPad (64GB, 3G) is $829, but Apple also has options all the way down to $500. I don’t know that Apple will drop below that price point, however. I think it’s more likely that when the iPad 2 comes out they’ll just offer 32GB for $500.
Helvetireader
Helvetireader icon by Josef Richter
I made a mental note to check out Helvetireader when it was released, but I’m just getting around to it due to ongoing sync issues with NetNewswire. I’ve installed it and created a Fluid app for it.
One small issue, and a fix: the default Helvetireader css highlights list items in the subscriptions list, but not the article list when collapsed into a list of headlines. Because I tend to browse through articles as a headline list and only open items I’m interested in, I changed the location of the css in the userscript to point to Josef Richter’s version here. Richter’s version of the css highlights the current headline in red.
Converting Canon T1i Video for the PS3
Joseph and Kristen have been experimenting with their Canon T1i’s video lately. The MOV files don’t have native support on the PS3, so Joseph and I went digging for a way to convert them. The default PS3 setting in Handbrake resulted in unreadable files, so we experimented with a variety of things: custom recipes for the Handbrake CLI, ffmpeg (that’s technical quicksand, right there). It turns out the solution was pretty simple. I’ll summarize what this thread revealed. The thread was focused on the 5D mk II, but it appears that both cameras use the same file format.
The primary issue appears to be the dimensions of the files: when loaded into Handbrake the size is interpreted as 1920 x 1088, not 1920 x 1080. It turns out that cropping those 8 pixels makes all the difference.
So, based off the suggestions in that thread I created a new preset in Handbrake, starting with the default PS3 setting. I clicked 2-pass encoding, bumped the bitrate to 17000, and in the Picture Settings did this:
Crop set to 8 on the bottom setting, and in Size set Anamorphic to Strict:

That’s it. 8 pixels. Not sure why the size is reported differently to begin with, but at least there’s a workaround.
When I first created my preset I forgot to save the Picture Settings from the current encode, so I lost the crop info. So remember to set Use Picture Size to Current when making your preset:

Changing Filename Case in SVN
This one has bugged me for a long time. During a project where things get passed from developer to developer or designer to designer things often get renamed to the same name, only with a different case. For example, myFlvIN.flv becomes myFlvin.flv. I used to think you had to move the files away, rename them, and then re-add them. Turns out if you simply include the full path to the repository it'll do the rename in place for you.
For example:
- svn mv -m 'rename' http://my.repository.com/myFlvIN.flv http://my.repository.com/myFlvin.flv
More details can be found here, at the Subversion FAQ.