How to mute camera shutter sound on android phone

前端 未结 5 1322
春和景丽
春和景丽 2020-12-14 02:33

Is there any way to mute the camera shutter sound in Android (not rooted phone)?

I use this code to mute my audio sound when taking picture:

  AudioM         


        
5条回答
  •  长情又很酷
    2020-12-14 02:54

    Since API level 17 (4.2) there is a proper, reliable way to do this, if the phone manufacturer supports it.

    First, detect whether you can disable the shutter sound programatically, then disable it

    Camera.CameraInfo info = new Camera.CameraInfo();
    Camera.getCameraInfo(id, info);
    if (info.canDisableShutterSound) {
        mCamera.enableShutterSound(false)
    }
    

    You'll need to set id to the appropriate camera id in the call to Camera.getCameraInfo, or disable them all in a loop from 0 to Camera.getNumberOfCameras()- 1.

    The developer documentation recommends that you play another sound in place of the shutter sound, but you're not obliged to.

提交回复
热议问题