05-12-2023 04:00 PM - last edited on 05-16-2023 10:14 AM by Danny
I want to be able to extract all images with one click from the raw burst image tool.
10-23-2023 02:22 PM
Gotcha. The github site is the place to go for that.
10-24-2023 09:34 AM
Well, OK, won't compile this myself. No Mac precompiles binaries there. Honestly, this issue should be covered by Canon, because it is more likely I need a bunch of images from a burst mode shoot instead of only one.
10-25-2023 09:27 AM
Totally agree. Even the folks at the local camera retailer agree who do a ton of Canon business. But not even their Canon rep is responding on this topic, let alone finding better contacts w/in Canon who can actually do something about it. We're left having spent big $$ on their equipment that can do very nice images but then the ball gets dropped by them for post-processing (either in DPP or in the camera's firmware). Real shame
10-23-2023 12:24 PM
10-24-2023 09:34 AM
Thanks but: won't compile this myself. No Mac precompiles binaries there. Honestly, this issue should be covered by Canon, because it is more likely I need a bunch of images from a burst mode shoot instead of only one.
10-24-2023 04:57 PM - edited 10-24-2023 05:13 PM
I have compiled for Ubuntu and got a binary file to run. That file worked on my other Ubuntu computer also. No idea about OS X.
10-26-2023 01:16 AM
It would be no problem to me to compile it myself on Mac. The point is: DPP should offer that functionality and I refuse to do the work the Canon developers should do. It is a matter of principle.
10-23-2023 05:29 PM
Interesting. I'm glad the alternative exists. I still want this basic functionality in DPP. I'd prefer not to use DNGs because I want to keep my RAW originals and exports and I don't really want an additional intermediate. I actually like the fact the LR sidecar files are a thing, though, with edits not saved in the original. Might not be for everyone but yeah I just want to extract all! 🙂
10-22-2023 03:05 PM
Unfortunately DPP doesn't support DNG files - if dnglab could extract RAWs as an option, then that would be really helpful.
03-03-2024 07:36 AM - edited 03-03-2024 10:30 AM
Here's a method I came up with for batch converting images in Windows. Although it's somewhat cumbersome, it's effective. Begin by launching Digital Professional 4 and initiating the RAW Burst Image Tool. Ensure that the Frame Selector is active and set to frame 1. Next, open PowerShell and enter the code provided below. After pasting the command, it will execute. Click on the top of the batch convert window within 4 seconds to ensure the Frame Selector remains active. The conversion will now start. It takes some time, but you don't need to click on everything. Once the process is complete, you can close PowerShell. You can also change the $maxIterations value to the preferred one. (Maybe you can do something similar using Automator on Mac). (Just discovered that you have to extract the last frame yourself, otherwise all good ).
Powershell code:
# Load the necessary .NET assembly for sending keystrokes
Add-Type -AssemblyName System.Windows.Forms
# Initial sleep before starting the loop
Start-Sleep -Milliseconds 4000
# Define a maximum number of iterations to prevent an infinite loop
$maxIterations = 200 # Update or remove this line as necessary
for ($i = 0; $i -lt $maxIterations; $i++) {
# Sequence of SendKeys commands, each followed by a sleep
[System.Windows.Forms.SendKeys]::SendWait("{TAB}")
Start-Sleep -Milliseconds 500
[System.Windows.Forms.SendKeys]::SendWait("{TAB}")
Start-Sleep -Milliseconds 500
[System.Windows.Forms.SendKeys]::SendWait("{TAB}")
Start-Sleep -Milliseconds 500
[System.Windows.Forms.SendKeys]::SendWait("{TAB}")
Start-Sleep -Milliseconds 500
[System.Windows.Forms.SendKeys]::SendWait("{ENTER}")
Start-Sleep -Milliseconds 500
[System.Windows.Forms.SendKeys]::SendWait("{ENTER}")
Start-Sleep -Milliseconds 500
# Repeat the pattern as needed
[System.Windows.Forms.SendKeys]::SendWait("{TAB}")
Start-Sleep -Milliseconds 500
[System.Windows.Forms.SendKeys]::SendWait("{TAB}")
Start-Sleep -Milliseconds 500
[System.Windows.Forms.SendKeys]::SendWait("{TAB}")
Start-Sleep -Milliseconds 500
[System.Windows.Forms.SendKeys]::SendWait("{TAB}")
Start-Sleep -Milliseconds 500
[System.Windows.Forms.SendKeys]::SendWait("{TAB}")
Start-Sleep -Milliseconds 500
[System.Windows.Forms.SendKeys]::SendWait("{TAB}")
Start-Sleep -Milliseconds 500
[System.Windows.Forms.SendKeys]::SendWait("{TAB}")
Start-Sleep -Milliseconds 500
[System.Windows.Forms.SendKeys]::SendWait("{TAB}")
Start-Sleep -Milliseconds 500
[System.Windows.Forms.SendKeys]::SendWait("{TAB}")
Start-Sleep -Milliseconds 500
[System.Windows.Forms.SendKeys]::SendWait("{RIGHT}")
Start-Sleep -Milliseconds 500
[System.Windows.Forms.SendKeys]::SendWait("{TAB}")
Start-Sleep -Milliseconds 500
}
09/26/2024: New firmware updates are available.
EOS R5 Mark II - Version 1.0.1
EOS R6 Mark II - Version 1.5.0
07/01/2024: New firmware updates are available.
04/16/2024: New firmware updates are available.
RF100-300mm F2.8 L IS USM - Version 1.0.6
RF400mm F2.8 L IS USM - Version 1.0.6
RF600mm F4 L IS USM - Version 1.0.6
RF800mm F5.6 L IS USM - Version 1.0.4
RF1200mm F8 L IS USM - Version 1.0.4
Canon U.S.A Inc. All Rights Reserved. Reproduction in whole or part without permission is prohibited.