I already found a solution for smoothly controlling the Shutter lens on a Samsung S4 Zoom device. Install the device in intelligent mode : parameters.set("mode", "smart-auto");
For Zoom In start : parameters.set("zoom-action", "optical-tele-start");
To start scaling : parameters.set("zoom-action", "optical-wide-start");
To Stop scaling : parameters.set("zoom-action", "zoom-stop");
Shutter Speed : parameters.set("zoom-speed", 1); //1,2,... parameters.set("zoom-speed", 1); //1,2,...
Do not forget to save the parameters in the camera instance mCamera.setParameters(parameters);
This works great on my device, now the shutter is quiet and smooth. :) Best regards.
source share