My problem is that I can't transfer the pictures to the HD without first disabling Remote on each of the cameras and then connecting them to the computer. Is there a more reliable way of doing it?
I've tried PTPCamGUI, but I couldn't get it to work with more than one camera at a time. Thanks in advance for your help.
The script can watch the status of the USB power and simulate the built-in remote shooting function without the USB remote being enabled in the CHDK menu. This should allow normal PTP communications over the USB line. Just setup the script so that it does not shoot if the 5V power is active for more than 10 seconds or so.
Thanks a million, I'm looking to try it.
--[[@title USB PTP Shooter @param d Delay (sec) @range d 5 60 @default d 10--]]delay = d*1000shot = 1set_console_layout(1, 1, 44, 10)print("USB & PTP Started ...")set_config_value( 121, 1 ) -- USB port disablesleep(5000)-- switch to shooting mode if necessary if ( get_mode() == false ) then set_record(1) while ( get_mode() == false ) do sleep(100) end endrepeat if (get_usb_power(1) == 1) then timer = 0 print("USB is active") press("shoot_half") repeat sleep(50) timer = timer + 50 x=get_usb_power(1) until (x == 0) or (timer > delay) if ( x == 0 ) then click("shoot_full_only") sleep(500) release("shoot_half") print("Shot " .. shot.." complete.") shot = shot+1 else release("shoot_half") print("No shot - waiting for USB release") set_config_value( 121, 0 ) -- USB port enable for ptp repeat sleep(1000) until (get_usb_power(1) == 0) set_config_value( 121, 1 ) -- USB port disable print("USB released") end else sleep(100) enduntil false
Anyway, to settle my nerves a bit, might you confirm that your suggested 'on camera scripting method' would [likely] result in much worse 'synch' than 'regular' remote synch ?
The script I posted above will not do "precision" sync as written. Enabling the USB remote sync menu option makes no difference in this case. Variations between cameras of as much as 100 mSec are quite possible.
Started by studwell76@yahoo.com RAW Shooting and Processing
Started by sfike « 1 2 3 4 5 » General Help and Assistance on using CHDK stable releases
Started by andrew.stephens.754365 Hotwire! Hardware Mods, Accessories and Insights
Started by reyalp General Discussion and Assistance
Started by shinnen General Discussion and Assistance