Hier ist der Code:
Syntax: [ Download ] [ Verstecken ]
Benutze uBasic Syntax Highlighting
@title DRI
@param a Pictures
@default a 5
@param c RAW 0=off 1=on
@default c 0
@param n ND-Filter 0=off 1=in 2=out
@default n 0
@param i ISO1 10x
@default i 5
@param s ISO2 1x
@default s 0
@param w Countdown in sec
@default w 5
for h=1 to w
let m=w-h+1
print "countdown:", m,"secs"
sleep 940
next h
print " "
print " "
print " "
print " "
print " "
if c>1 then c=1
endif
if c<0 then c=0
endif
if n>2 then n=2
endif
if n<0 then n=0
endif
if a>8 then a=8
endif
if a<1 then a=1
endif
set_raw c
set_nd_filter n
b=96
press "shoot_half"
get_focus f
for k=1 to a
print "Photo " k
set_focus f
set_iso_real (i*10)+s
set_tv96_direct b
shoot
b=b-96
next k
release "shoot_half"
end
@param a Pictures
@default a 5
@param c RAW 0=off 1=on
@default c 0
@param n ND-Filter 0=off 1=in 2=out
@default n 0
@param i ISO1 10x
@default i 5
@param s ISO2 1x
@default s 0
@param w Countdown in sec
@default w 5
for h=1 to w
let m=w-h+1
print "countdown:", m,"secs"
sleep 940
next h
print " "
print " "
print " "
print " "
print " "
if c>1 then c=1
endif
if c<0 then c=0
endif
if n>2 then n=2
endif
if n<0 then n=0
endif
if a>8 then a=8
endif
if a<1 then a=1
endif
set_raw c
set_nd_filter n
b=96
press "shoot_half"
get_focus f
for k=1 to a
print "Photo " k
set_focus f
set_iso_real (i*10)+s
set_tv96_direct b
shoot
b=b-96
next k
release "shoot_half"
end
Erstellt in 0.010 Sekunden, mit GeSHi 1.0.8.9
Das Problem das bei mir auftritt ist, dass alle Bilder bis auf das Zweite die richtige Zeit zugewiesen bekommen, sprich ich bekomme eine Reihe mit
Bild 1: 0.5 sek
Bild 2: von der Kamera gesetzte Zeit
Bild 3: 2 sek
Bild 4: 4 sek
Bild 5: 8 sek
warum wird das zweite Bild bei der Zuweisung überprungen?... Das Interessante ist, dass der Fehler dann auftritt wenn die Fotos im hellen geschossen werden, d.h Nachts ist alles ok,aber bei Wohnzimmerbeleuchtung läuft was schief, so gesehen geht es eher ums Prinzip
Kamera ist eine Ixus 80 mit 1.01A Firmware
der Countdown ist aus "zoomser.bas" geklaut
mit set_focus versuche ich den Fokus des ersten Bildes auf die Restlichen zu übertragen. Am liebsten wäre mir ein Befehl der auslöst ohne neu zu fokussieren.......(Continuous Mode(?))
hat jemand eine Meinung dazu, kann man da etwas verbessern?
Vielen Dank im Voraus