Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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:

  AudioManager mgr = (AudioManager)getSystemService(Context.AUDIO_SERVICE);
    int streamType = AudioManager.STREAM_SYSTEM;
    mgr.setStreamSolo(streamType, true);
    mgr.setRingerMode(AudioManager.RINGER_MODE_SILENT);
    mgr.setStreamMute(streamType, true);

I mute the sound and silent the phone.

mCamera.takePicture(null, null, photoCallback); 

then take the picture

It's working on HTC HERO, HTC Desire, Motorola ME860, MotoA953. But when I tested it on Samsung Tab p1000 and Sony Experia R800i, it's not working. Is there any other work around?

share|improve this question
see this wiki.dandascalescu.com/howtos/… – MAC Apr 30 '12 at 11:47
3  
Did you try setting the shutter callback to null? How are you taking the picture? – Styler May 15 '12 at 3:54
mCamera.takePicture(Camera.ShutterCallback shutter, Camera.PictureCallback raw, Camera.PictureCallback jpeg) mCamera.takePicture(null, null, photoCallback); I did set the shutter callback null – user430926 May 15 '12 at 8:58

6 Answers

The method you've posted already is actually the best one I can find/think of. The reason it doesn't work is because it's not supposed to. In fact, in many places (most of Europe, Japan, parts of US, etc.) it's illegal to disable the shutter sound. This is so that you can't take pictures in places you're not supposed to, and so you don't take pictures of people without their permission, and so on. It's just a shot in the dark that the manufacturer has purposely tried to make sure you can't do it no matter what (though technically there's always a way), but when you think about it, logically there's no reason your code shouldn't work right? It's simple, basic, makes sense. Anyways, there are many silent camera apps out there and Camera+ ICS is actually built on the default ICS camera but has a Silent Shutter option so it must be possible.

share|improve this answer
I found a reference about shutter sounds being required in South Korea, but nothing about the US. Can you point me to a document explaining the legal status of this in the US? AFAICT this proposed bill never passed. – cberzan Oct 26 '12 at 1:50

try this code:

AudioManager manager = (AudioManager) getSystemService(Context.AUDIO_SERVICE);
if(TextUtils.equals(muteMode, "mute")){
    manager.setStreamVolume(AudioManager.STREAM_SYSTEM, 0 , AudioManager.FLAG_REMOVE_SOUND_AND_VIBRATE);
}else{
    manager.setStreamVolume(AudioManager.STREAM_SYSTEM, manager.getStreamMaxVolume(AudioManager.STREAM_SYSTEM) , AudioManager.FLAG_ALLOW_RINGER_MODES);
}
//here continue to take picture...

do not use AudioManager.setStreamMute() method since there is a known issue on android below version 2.3..

share|improve this answer
this doesn't work for me with 2.3.3 – wired00 Dec 11 '12 at 4:03

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.

share|improve this answer

there are a phones out there which play the shutter sound on their own. In this case, it seems to not be possible to disable the shutter sound.

share|improve this answer

One crazy way i can think is to get the permission to mute the phone.

share|improve this answer
How to do that? I already made the phone silent but still not working. – user430926 May 15 '12 at 4:19

You need to set the shutter callback to null.

That is, applications can call takePicture(Camera.ShutterCallback, Camera.PictureCallback, Camera.PictureCallback, Camera.PictureCallback) during recording.

Applications can set shutter callback as null to avoid the shutter sound.

I found all that here Camera.Parameters

share|improve this answer
I tried it, but it's not working.. The shutter sound still exist.. – user430926 May 15 '12 at 4:18
Paste your code? – Styler May 15 '12 at 4:24
AudioManager mgr = (AudioManager)getSystemService(Context.AUDIO_SERVICE); int streamType = AudioManager.STREAM_SYSTEM; mgr.setStreamSolo(streamType, true); mgr.setRingerMode(AudioManager.RINGER_MODE_SILENT); mgr.setStreamMute(streamType, true); I mute the sound and silent the phone.. mCamera.takePicture(null, null, photoCallback); then take the picture – user430926 May 15 '12 at 5:58
U should probably paste it as code in your question by editing it – Styler May 15 '12 at 6:14

protected by tchrist Sep 7 '12 at 22:30

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.