p.1 #4 · EOS Utility 2.12.3 support for 5D classic?
The latest EOS utility doesn't work...the 5D dropped off the list of supported cameras......I found one from an earlier camera (might have been a 40D) and that is fine.
p.1 #5 · EOS Utility 2.12.3 support for 5D classic?
Canon has a bad habit of dropping support for Mac users. All of my Canon scanners no longer work on 10.8. They still work fine on PCs, although some don't work on Windows 8 either.
p.1 #6 · EOS Utility 2.12.3 support for 5D classic?
Paul Gardner wrote:
Canon has a bad habit of dropping support for Mac users. All of my Canon scanners no longer work on 10.8. They still work fine on PCs, although some don't work on Windows 8 either.
True, my Canon scanner drivers were obsolete within a year and were never fixed. I eventually bought a copy of Sliverfast and my 2002 FS4000US film scanner works great under OS 10.8.2. My Epson 2400 flatbed scanner is of similar vintage and Epson never ported the apps to run under Intel only OS 10.8x. However, it works fine for basic scans with Apple's generic "Image Scan" app.
As to the 5D, Canon stopped supporting tethering and similar computer connection functions a couple years back. RAW file conversion is still supported in DPP. Realize tethering and uploads are supported in aftermarket apps like Aperture and Lightroom. Most of us don't bother to load EOS Utility as it's completely useless save for writing your name in the camera's EXIF data.
But, yes, a Firewire 800 or USB3 card reader is the way to go. Direct uploads via 5D wire are silly slow.
p.1 #7 · EOS Utility 2.12.3 support for 5D classic?
Yes, I had a problem with the software on my 5D when I got my 5D2. I meant to call Canon about it, but never got around to it. That's crazy that it's not supported.
p.1 #11 · EOS Utility 2.12.3 support for 5D classic?
Image Capture in MacOS dumps all images into ~/Pictures/ and doesn't seem to have options to do otherwise.
ImageBrowser EX (from Canon) has a Memory Card Utility that imports from card reader and can put the images into files according to user selected folder names (date based). Unfortunately, it does not also allow the filename itself to be renamed based on date and/or camera body. But at least it gets in the same folder as EOS Utility would put it in.
I suppose Aperture would allow renaming the file, but buying Aperture for that when I'm content with DPP for my raw processing seems silly.
Anyone know how to read the EXIF and rename the file using a simple unix script? Shouldn't be hard, but I don't want to bother reinventing the wheel.
p.1 #12 · EOS Utility 2.12.3 support for 5D classic?
Dang... EOS Utility 2.12.3 dropped support for the 1d2n as well
Isn't the 2n still officially supported by canon (i.e., serviceable)?
This is very annoying.
p.1 #13 · EOS Utility 2.12.3 support for 5D classic?
Gochugogi wrote:
But, yes, a Firewire 800 or USB3 card reader is the way to go. Direct uploads via 5D wire are silly slow.
Take note that only the Mac Pro, Mac mini and Macbook Pro without Retina Display retains Firewire port of any kind. There is a dongle for it to attach to a Thunderbolt port but the speed is a fraction of what it was and does not supply bus power to run a bus-powered peripheral.
My 9000f is still supported by Canon but I rather run 3rd party apps as they are much more robust.2
p.1 #14 · EOS Utility 2.12.3 support for 5D classic?
ok, here's my last post on this, which probably comes as a relief to most on the forum as this is admittedly a boring topic...
I mostly care about getting the date and camera body into the filename, so I use the Memory Card Utility of Canon's ImageBrowser EX to put the images into folders/directories named with shoot date. I then run the following unix shell script (since MacOS *is* Unix) at a shell command prompt:
----------------------------- contents of an executable file I call cr2rename -----------------------
#!/bin/bash
# rename .CR2 file to include directory (which should be shooting date) and camera as inputted on command line
for file in `ls IMG*.CR2`
do
mv $file "${PWD##*/}_$1_$file"
done
----------------------------------------------
Example: at prompt in directory 2012_12_25 I type " cr2rename 5D"
and filenames IMG_1234 and IMG_1235 become
2012_12_25_5D_IMG_1234 and
2012_12_25_5D_IMG_1235
Not fancy but it works. Would have been much easier for me had Canon retained compatibility with ALL past bodies, but whatever...