-
Notifications
You must be signed in to change notification settings - Fork 53
exposure
xiaoxiaochupei edited this page Jul 26, 2017
·
1 revision
短视频支持在录制过程中实时调节曝光度,调节曝光度的竖直SeekBar可参考Demo
// 首先通过KSYRecordKit获取录制时摄像头参数
Camera.Parameters parameters = mKSYRecordKit.getCameraCapture().getCameraParameters();
// 获取曝光度的可调节范围(一般为-2~2,不同手机不太一样)
int minValue = parameters.getMinExposureCompensation();
int maxValue = parameters.getMaxExposureCompensation();
// 设置曝光度值value(minValue与maxValue之间的整型值),若使用SeekBar,可根据progress进行计算并在此设置,可参考demo
parameters.setExposureCompensation(value);
// 设置好曝光度的参数需要重新设置给CameraCapture才能在录制中生效
mKSYRecordKit.getCameraCapture().setCameraParameters(parameters);