fix quicklookd and transmission when downloading video
April 29th, 2008
I say we take off and nuke the entire site from orbit…it’s the only way to be sure.
Is your Mac’s CPU pegged when Transmission (or any other Mac BitTorrent client) downloads video? That’s because quicklookd — the QuickLook daemon that sneaks around and builds thumbnails of your movie files, is trying to build a thumbnail of a chunk of video that doesn’t exist yet. Because BitTorrent clients allot the disk space non-contiguously and then fill in the data, your Mac is confused. End the confusion with two Terminal commands so long that there is no center content well that can contain them:
sudo cp -r /System/Library/Frameworks/QuickLook.framework/Resources/Generators/Movie.qlgenerator ~/Documents/Movie.qlgenerator sudo rm -r /System/Library/Frameworks/QuickLook.framework/Resources/Generators/Movie.qlgenerator
NOTE: So what did that do? The first command made a backup copy of the problematic Movie.qlgenerator in your Documents folder. The second command removed it. On the downside, you will lose the ability to “QuickLook” video files, and no thumbnails will be created or maintained for video files. On the upside, you will instantly gain ~75% of your CPU back as your Mac stops struggling in vain to create a thumbnail for a video frame that hasn’t actually been downloaded yet.
~Jeff