In Nokia 6220 classic, To control shutter speed I want to use setExposureTime()in 'VIDEOS (not in snapshot taking) making'. I added following code in my Midlet
player.getControl("javax.microedition.media.control.camera.ExposureControl");
exposure.setExposureTime(14); // Microseconds (1/500th second)
exposure.setFStop(280);
exposure.setISO(200);
But Midlet don't start (at run) in my phone when I try to run/execute this in my phone to make and record vidoes. But when I comment these lines, video making and saving job complete fine.
Please can U tell me why my MidLet do not run with this code or what I should add more or how I can correct this code.

Reply With Quote

