I want to capture video by simply opening default video recorder but sound must be disabled while capturing. Thanks in advance.
Intent intent = new Intent(MediaStore.ACTION_VIDEO_CAPTURE);
intent.putExtra(MediaStore.EXTRA_VIDEO_QUALITY, 1);
startActivityForResult(intent, RESULT_VIDEO_CAP);
I totally agree with CommonsWare answer it is all depending upon the third party application to accept the parameters and for now there is no third party application which is supporting this tag.
As much as I know there is no third party video recording application which is supporting that mute audio tag. you can override audio manager services and mute recording volume and start video recording Intent but there is no guarantee that third party application will not unmute audio. Another way around implement your own video recording Interface using Surface view or capture video and use any library to mute audio from it.