I am creating an Android app which is sort of like stop-motion app which is intended to efficiently take pictures even during movement. I wanted to set very low shutter speed and high aperture for getting better pictures particularly when camera is in motion, but some answers on stack overflow suggest me that it is impossible to set shutter speed and aperture(Please correct me if I am wrong here). I am not using camera intent, but creating camera object with startPreview followed by setCameraParams and then takePicture.
What are the other camera parameters in android api which I could set to make it efficient precisely for camera in movement? I am setting SCENE_MODE_SPORTS and also trying to set FOCUS_MODE_CONTINUOUS_PICTURE(which is not supported in my camera though to test).