If still not work for you ? Try new methods here
Step 1.
Rename the camera shutter sounds. You can find these files in /system/media/audio/ui. The files are outlined below. You can either do this in a file explorer that supports root, or through adb. In fact the commands below are the exact commands you need to use after you use adb root and remount the /system as read/write.
Code:
adb shell
su
cd /system/media/audio/ui
mv camera_click.ogg camera_click.ogg.bak
mv Shutter_01.ogg Shutter_01.ogg.bak
mv camera_click_short.ogg camera_click_short.ogg.bak
mv Cam_Start.ogg Cam_Start.ogg.bak
mv Cam_Stop.ogg Cam_Stop.ogg.bak
Step 2.
The above will still leave the camera auto-focus sound. To remove that, replace the Camera.apk in /system/app with the attached file.
It is best to take a backup of the Camera.apk before you replace it by copying it somewhere else.
If you have placed the Camera.apk attached here in a folder called NoSound, then the commands below can be run on adb to do this -
"CWM_XWLPF remove focus sound.zip" install from CWM
Code:
adb pull /system/app/Camera.apk
adb pull /system/app/Camera.odex
adb push NoSound\Camera.apk /system/app/Camera.apk
0 comments:
Post a Comment