Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Messages - photo360

#1
Ok. i finaly found a solution.

i have add this line in the code, just under "var files =  sourceFolder.getFiles(fileMask);"
"files.sort();"

Hope this can help somebody.

Best regards,
#2
Hi,
Thank you very much for your script.
I try to use it on CS6 (64bits or 32bits on windows 7) and i have always the same problem: the image files are not merged in the order of the filename.
If i have a directory with the sequence: file1.jpg, file2.jpg, file3.jpg, file4.jpg, file5.jpg, file6.jpg and try to merge it by a number of brackets = 3, the script merge the files like this (file2.jpg, file6.jpg, file5.jpg) and (file1.jpg, file3.jpg, file4.jpg) wich is not right and souhd be (file1.jpg, file2.jpg, file3.jpg) and (file4.jpg, file5.jpg, file6.jpg).
I should precise one important thing: it works fine if the directory is stored on local drive (for example c:) but it bugs when files are on a distant server (synology DS1010+).

Thanks for your help
#3
Archived scripts / Re: PicoC scripting API
February 26, 2013, 02:55:36 PM
Thanks !

Some tests:

set_flash(0)/set_flash(1) works great on canon 50D with external flash (canon speedlite 580 EX) or with built-in flash.
pop_flash() does not work on my 50D. The flash shoud be pop up manually.

set_flash(0)/set_flash(1)  does not work en 5DMKII with canon speedlite 580 EX. the flash fire each time.
It seems that this function works only for canon with build-in flash.

Is there another solution for 5DMKII ?
#4
Archived scripts / Re: PicoC scripting API
February 25, 2013, 11:53:41 AM
Is it possible with PicoC scripting API to do a special bracketing sequence with/without flash?
I need to take some pictures with flash at some shutter speed and to take the same pictures without flash...
this should work on 5DII with canon speedlite 580EX.

Thanks for your help

Exemple of script:

set_aperture(11);
set_iso(100);
set_shutter(1./160);
"flash off"
takepic();

"flash on"
takepic();
#5
Hello everybody,

I would like to create a special exposure bracketing  sequence with Lua.

By default, the number of shoot per sequence is limited to 9. I need 14 shoots by 1EV step to cover a very high dynamic range.
Is it possible to do it by Lua Script?
I need also to take two times the same shoot (for a given TV value), one with flash and the second without flash.
The bracketing sequence should be like that:
  first shoot: tv: 1/200 with flash
  second shoot: tv: 1/200 without flash
  third shoot: tv: 1/100 with flash
  next shoot: tv: 1/100 without flash
  ...

thanks for you help