Help: Tv bracketing script in continuous mode - page 3 - Script Writing - CHDK Forum supplierdeeply

Help: Tv bracketing script in continuous mode

  • 29 Replies
  • 16739 Views
*

Offline Phantomse

  • *
  • 12
  • A720 IS Allbest 50
Re: Help: Tv bracketing script in continuous mode
« Reply #20 on: 06 / May / 2008, 18:52:51 »
Advertisements
Im searching for a solution on getting timelaps HDR video tried some scripts (OMNI Intervalometer crashed >for S3,  Simple bracketing+Intervalometer    brackets at same expoasure time, no option for controlling expoasure time... ) with no succes.. By the way my A720 IS dosent have the C (continous) mode so TV , AV bracketing settings dont warck. Is there a software to mack editing of multiple JPG to multiple hdr's easy?

*

Offline PhyrePhoX

  • *****
  • 2254
  • make RAW not WAR
    • PhyreWorX
Re: Help: Tv bracketing script in continuous mode
« Reply #21 on: 07 / May / 2008, 01:24:18 »
your camera doesnt sport built-in bracketing/continous mode? read this: DISCOVERY: Controlled Bracketing!!! that should help you.
as for software, there is tons of em, ranging from free software (google for qtpfsgui, nice program, use it myself) to not so free software.

*

Offline vine

  • ***
  • 124
  • A560
    • my chdk page
Re: Help: Tv bracketing script in continuous mode
« Reply #22 on: 07 / May / 2008, 02:51:49 »
...my A720 IS dosent have the C (continous) mode...
A720 DOES have continuous shooting mode
my photo map

my chdk page with tutorials, scripts and more

>> finally back from vacation (was a bit longer than intended) <<

*

Offline Phantomse

  • *
  • 12
  • A720 IS Allbest 50
Re: Help: Tv bracketing script in continuous mode
« Reply #23 on: 07 / May / 2008, 06:42:10 »
Thanx PhyrePhoX very helpful but I still have a newbie question. How can i make a timelaps HDR, how can I make that continuous mode repeats its self at a fix interval? Can a script be writen to dou such thing? and on the othert part do I have to edit evry img in separate or are there progs that mack editing of many HDR more simple? like video-editing
Im trying to obtain something like this.

<object width="425" height="355"><param name="movie" value="
« Last Edit: 07 / May / 2008, 06:44:33 by Phantomse »


*

Offline vine

  • ***
  • 124
  • A560
    • my chdk page
Re: Help: Tv bracketing script in continuous mode
« Reply #24 on: 07 / May / 2008, 07:05:26 »
How can i make a timelaps HDR, how can I make that continuous mode repeats its self at a fix interval?
Have a look at my script here Bracketing series script or in the completed scripts section
my photo map

my chdk page with tutorials, scripts and more

>> finally back from vacation (was a bit longer than intended) <<

*

Offline Phantomse

  • *
  • 12
  • A720 IS Allbest 50
Re: Help: Tv bracketing script in continuous mode
« Reply #25 on: 07 / May / 2008, 12:26:59 »
It crashes on 720

*

Offline vine

  • ***
  • 124
  • A560
    • my chdk page
Re: Help: Tv bracketing script in continuous mode
« Reply #26 on: 07 / May / 2008, 12:34:04 »
It crashes on 720
What build?
You have to have get_raw_count/get_jpg_count and you have to follow the instructions. I wrote very clearly what you have to do to get it to work.
my photo map

my chdk page with tutorials, scripts and more

>> finally back from vacation (was a bit longer than intended) <<

*

Offline Phantomse

  • *
  • 12
  • A720 IS Allbest 50
Re: Help: Tv bracketing script in continuous mode
« Reply #27 on: 07 / May / 2008, 12:51:14 »
Im using Allbest build #50
Its til crashing.
maybee i missinterprete the instructions
Do I have to add get_jpg_count and/or get_raw_count or is it included in the build?

I found a way using the usual Hdr setings from CHDK and the first intervalometer script

A nother problem amearged. Can a cript create folders and change them for each bracket session or change the file name so its mor simple to se the groups?Maybee you have a better sugestion.
« Last Edit: 07 / May / 2008, 13:27:28 by Phantomse »


*

Offline PS

  • ***
  • 157
  • A610 1.00f
What's wrong with this script?
« Reply #28 on: 09 / July / 2008, 11:45:16 »
Hi, what's wrong with this script:
Code: [Select]
@param a # of shots
@default a 2
press "shoot_full"
do
until get_exp_count>=a
release "shoot_full"
end
It won't stop shooting. I'm using allbest-a610-100f-51-425.

*

Offline Jucifer

  • *****
  • 251
  • [A710IS]
Re: Help: Tv bracketing script in continuous mode
« Reply #29 on: 09 / July / 2008, 12:13:39 »
get_exp_count shouldn't exist in "allbest" builds... (but it does in
the collaborative CHDK build
, the first post also has attached a simple example on using get_exp_count: simple exposure counter (smplxpcntr.BAS))

with the current implementation of get_exp_count you could try something like this:

Code: [Select]
@title exposure counter
@param a # of shots
@default a 3

C=get_exp_count+a
if C>9999 then C=C-9999
press "shoot_half"
press "shoot_full"
do
until get_exp_count=C
release "shoot_full"

end

 

Related Topics