Bracketing with flash

Started by arch80, March 13, 2018, 02:14:11 AM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

arch80

I am looking to hire a ML developer to create an auto "Flambient" shot sequence. We always shoot four exposures for each image, one flash pop at -2 exposure and then 3 exposures using HDR autobracket mode. We are having to touch the camera too switch between single exposure and HDR and it occasionally causes blurry images once blended from the camera movement. Wondering if there is a way to automate this with ML.

So essentially I need the ML action to take one photo at -2 exposure and then automatically switch to HDR mode and fire off the 3 shots (preferably ML would set HDR exposures to -1,1,+3 before firing the HDR shots).

Is this possible with ML? Anybody that can do this please reply or message me. Will make it worth your time if you can do this.

We use Canons (70D's and t5s)

Frank7D

Maybe an Lua script could do this (just a guess). But probably no one would do it for just your private use (or for money). This is an open source community. Try posting a request on the feature requests thread or an Lua scripting thread.

a1ex

With the upcoming experimental lua_fix build (just added camera.flash), save this as bracket.lua under ML/SCRIPTS on your card, then load lua.mo and run the script:


-- Bracketing with flash

-- wait for camera movement to settle
menu.close()
msleep(2000)

-- initial settings
camera.shutter = 1/200
camera.iso = 100

-- first exposure with flash
camera.flash = true
camera.flash_ec = -2
menu.set("Shoot", "Advanced Bracket", 0)
camera.shoot()

-- 3 exposures without flash
camera.flash = false
menu.set("Shoot", "Advanced Bracket", 1)
menu.set("Advanced Bracket", "Frames", 3)
menu.set("Advanced Bracket", "EV increment", "2 EV")
menu.set("Advanced Bracket", "Sequence", "0 + ++")
camera.shoot()
camera.wait()

-- restore settings
menu.set("Shoot", "Advanced Bracket", 0)
camera.flash = true
camera.flash_ec = 0


Tested on 500D. Can be customized as needed.

Automating Canon's AEB is also possible, but the values it can accept are model-specific (requires extra care).

Off-topic: recommended reading.

Danne

Cool. Works for on cam flash? Also with external hot shoe flashes? (Lua noob)

a1ex

I hope it works; that setting appears to be generic in Canon menu, but never tested it on external flash.

Without the recent MPU research, I wouldn't have known whether this setting is generic or model-specific.

Danne

Oki, I'll check the behaviour but away for a week atm. Hopefully there'll be some other testing meanwhile.
Yeah, that qemu research tool you are creating is something else...

R

Running @a1ex bracket.lua on lua_fix.2018Mar21.5D2212 all 4 shots trigger the external 270EX flash at -2 FEC.

glock26

Hi, I have a couple of newb questions, please point me in the right direction:
1. this script runs when the camera turns on, is there a way to make it so that I can run it anytime that I want without turning the camera off and then again? ..ideally it would run when I use an IR remote as a shutter release.
2. my flash recycles and then fires again on the last shot, it seems to be ignoring the "camera.flash = false" command, is there any way to fix this?