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

I am using this

camera.takePicture(null, rawCallback, jpegCallback);

but with some devices it makes a sound when the camera captures the image.

Please can any one help, how can I mute camera shutter sound?

share|improve this question
I think this is somewhat undoable. At least in The States it was enforced by legislation to have all camera devices make a shutter sound. This is the case in some other countries too AFAIK. – harism Jan 23 at 10:02
harism in some device it cause problem i had tested in nexus,s2,nexus table all device capture silently but htc desicer and some device cause problem. – Pankaj Jan 23 at 10:15
is feeding the method with a silenced sound file a doable idea? – ss1271 Jan 23 at 10:29

4 Answers

up vote 4 down vote accepted

For Mute put this code before capturing image

AudioManager mgr = (AudioManager)getSystemService(Context.AUDIO_SERVICE);
mgr.setStreamMute(AudioManager.STREAM_SYSTEM, true);
camera.takePicture(null, rawCallback, jpegCallback);

After 1 second it will unmute put below code:

final Handler handler = new Handler();
Timer t = new Timer();
t.schedule(new TimerTask() {
    public void run() {
        handler.post(new Runnable() {
            public void run() {
            AudioManager mgr = (AudioManager)getSystemService(Context.AUDIO_SERVICE);
            mgr.setStreamMute(AudioManager.STREAM_SYSTEM, false);
                    }
                });
            }
    }, 1000); 
share|improve this answer

Use Below two lines before button click

 AudioManager mgr = (AudioManager)getSystemService(Context.AUDIO_SERVICE);
    mgr.setStreamMute(AudioManager.STREAM_SYSTEM, true);

And these two lones just after image get captured:

AudioManager mgr = (AudioManager)getSystemService(Context.AUDIO_SERVICE);
mgr.setStreamMute(AudioManager.STREAM_SYSTEM, false);

I know only this solution and I personally used it in my application

share|improve this answer
Thanks it work but for unmute after 1second so it will not sound while capturing. – Pankaj Jan 23 at 10:30

As harism mentioned, this is not possible to do on some devices, because there are legal requirements in some markets (Japan, for example) that taking a picture always results in an audible shutter sound.

The stream type used for these types of sounds is STREAM_SYSTEM_ENFORCED, and there's a read-only system property that determines whether or not you can mute such a stream.

share|improve this answer
Thanks micheal and harism it's solve by this way for mute: AudioManager mgr =(AudioManager)context.getSystemService(context.AUDIO_SERVICE); mgr.setStreamMute(AudioManager.STREAM_SYSTEM, true); for unmute: final Handler handler = new Handler(); Timer t = new Timer(); t.schedule(new TimerTask() { public void run() { handler.post(new Runnable() { public void run() { AudioManager mgr = (AudioManager)context.getSystemService(context.AUDIO_SERVICE); mgr.setStreamMute(AudioManager.STREAM_SYSTEM, false); } }); } }, 1000); – Pankaj Jan 23 at 10:28
@PankajJolapara you can post your own solution as an answer and accept the answer that solves your problem. This could help anyone who has the same problem. :) – ss1271 Jan 23 at 10:31
There are devices for which the proposed solution won't work, since they're set to always route the shutter sound to the loudspeaker and not allow it to be muted. Again, it depends largely on the market where the device was sold. – Michael Jan 23 at 10:41

You can turn it off programmatically from 4.2 onwards with:

Camera.CameraInfo info = new Camera.CameraInfo();
Camera.getCameraInfo(id, info);
if (info.canDisableShutterSound) {
    mCamera.enableShutterSound(false);
}
share|improve this answer
you right @Jono but on above 4.2 verion it' nothing of use – Pankaj Feb 25 at 10:13

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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