TheGrew
Suspended / Banned
- Messages
- 126
- Edit My Images
- Yes
NEWS JUST IN 15/12/14:
Changes for Digital Photo Professional 4.1.50 for Windows : - Supports EF 100-400mm f/4.5-5.6L IS II USM, EF-S 24mm f/2.8 STM. - Newly supported EOS-1D Mark IV, EOS 70D, EOS 7D, EOS 5D Mark II, EOS Kiss X7i / EOS Rebel T5i / EOS 700D, and EOS Kiss X7 / EOS Rebel SL1 / EOS 100D.
Hi All
Hopefully this is the right section to put this in, I am relatively new to the community and still trying to find my way around.
I recently had a demo of Canon's DPP4 in place of Lightroom and was impressed with the results offered with things such as retaining picture style information. However I discovered on coming home that Canon only officially support the current full frame bodies (plus the recently released 7Dmkii). Anyone else is stuck with the DPP3 which looks like a throwback to the mid-nineties in terms of interface. Fortunately I stumbled across this article on canonwatch.com which details how you can get the following cameras to work in DPP4:
To do this one Windows you simply have to download the brilliant ExifTool from here as described by the article. Unfortunately though this process slows down the workflow as it has to be done one image at a time. So I thought I would put my CompSi Degree to good use by scripting the process for a given folder.
The result is this process:
DISCLAIMER: I accept no responsibility for the below process, I supply it encase it is of use to anyone else.
Firstly download the ExifTool from the website, then follow steps 1-4 from the Stand-Alone Executable installation page.
Once that is installed it is simply a one line script to apply the EXIF modification recursively within a given folder.
for %%v in (*.cr2) do exiftool -CanonModelID="EOS 5D Mark III" %%v
The above simply searches for any CR2 files and altered the CanonModelID property to state it is from a 5Dmk3. If you wish you may just copy and paste the above into notepad and save as a .bat file (batch file). Alternatively you can grab it from my Dropbox.
To run the file simply call it from the Windows Command Line as per the attached screenshot (CMDOutput.png).
After the script has finished running you can then load and edit images in DPP4 (as per Finished.PNG).
If anyone has any questions, suggestions, thoughts or the comments please put post them below. I hope this is of use to someone else.
Changes for Digital Photo Professional 4.1.50 for Windows : - Supports EF 100-400mm f/4.5-5.6L IS II USM, EF-S 24mm f/2.8 STM. - Newly supported EOS-1D Mark IV, EOS 70D, EOS 7D, EOS 5D Mark II, EOS Kiss X7i / EOS Rebel T5i / EOS 700D, and EOS Kiss X7 / EOS Rebel SL1 / EOS 100D.
Hi All
Hopefully this is the right section to put this in, I am relatively new to the community and still trying to find my way around.
I recently had a demo of Canon's DPP4 in place of Lightroom and was impressed with the results offered with things such as retaining picture style information. However I discovered on coming home that Canon only officially support the current full frame bodies (plus the recently released 7Dmkii). Anyone else is stuck with the DPP3 which looks like a throwback to the mid-nineties in terms of interface. Fortunately I stumbled across this article on canonwatch.com which details how you can get the following cameras to work in DPP4:
- EOS M
To do this one Windows you simply have to download the brilliant ExifTool from here as described by the article. Unfortunately though this process slows down the workflow as it has to be done one image at a time. So I thought I would put my CompSi Degree to good use by scripting the process for a given folder.
The result is this process:
DISCLAIMER: I accept no responsibility for the below process, I supply it encase it is of use to anyone else.
Firstly download the ExifTool from the website, then follow steps 1-4 from the Stand-Alone Executable installation page.
Once that is installed it is simply a one line script to apply the EXIF modification recursively within a given folder.
for %%v in (*.cr2) do exiftool -CanonModelID="EOS 5D Mark III" %%v
The above simply searches for any CR2 files and altered the CanonModelID property to state it is from a 5Dmk3. If you wish you may just copy and paste the above into notepad and save as a .bat file (batch file). Alternatively you can grab it from my Dropbox.
To run the file simply call it from the Windows Command Line as per the attached screenshot (CMDOutput.png).
After the script has finished running you can then load and edit images in DPP4 (as per Finished.PNG).
If anyone has any questions, suggestions, thoughts or the comments please put post them below. I hope this is of use to someone else.
Last edited: