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 - palark93

#1
I have installed and it works fine, but now the screen always flickers, as if playing back hdr video, but the settings are normal.
it flickers during playback of stills as well.
anyone else having this problem??
#2
Quote from: satriani on May 28, 2013, 11:44:45 PM
You need to compile build from a last source or you can feel free an use build compiled by me here.
Set a boot flags an your SD and extract zip to SD. Works very well.
And please diligently and extensively report the bugs ;)

thank you kindly, installed just fine ;)
(the build i was using was missing a few features, namely bracketing)
#3
Archived scripts / Re: PicoC scripting API
May 25, 2013, 03:26:07 AM
cant seem to get this to work right, every time i try it it just takes pics at 1/125
uuuggghhhh >:(

// Custom bracket sequence

console_hide();set_aperture(22);
set_iso(100);
set_shutter(1./2000);
takepic();
set_shutter(1./1000);
takepic();
set_shutter(1./500);
takepic();
set_shutter(1./250);
takepic();
set_shutter(1./125);
takepic();
etc.....
#4
Hello, I have been following this topic for a while, and recently was able to install ML on my T4i(thank you very much to everyone here btw :D) , and I have a couple questions that seem to still elude me. :-\

1. I have noticed that people have been asking about advanced bracketing, is this feature currently disabled or unavailable?

2. I have been messing around with the scripts, mainly the custom exposure one, and i have edited it thusly:

// Custom bracket sequence

console_hide();set_aperture(22);
set_iso(100);
set_shutter(1./2000);
takepic();
set_shutter(1./1000);
takepic();
set_shutter(1./500);
takepic();
set_shutter(1./250);
takepic();
set_shutter(1./125);
takepic();
etc.....



but any time i run this script it just takes a few pictures at 1/125??? what am i doing wrong here