Jump to content


camera shutter sound

* * * * * 1 votes

36 replies to this topic

#1
amare

amare

    Newbie

  • Members
  • Pip
  • 15 posts
Is there any way to get rid of it? couldn't see any settings . Thanks.


#2
rjm2k

rjm2k

    Hardcore

  • Members
  • PipPipPipPipPipPip
  • 1,096 posts
yes if you know how to use adb and have a rooted phone

assuming wireless connection and adbwireless installed on phone

adb connect phoneip
adb remount
adb shell
   rm /system/media/audio/ui/camera_click.ogg
   rm /system/media/audio/ui/VideoRecord.ogg
reboot


#3
Ed-

Ed-

    Newbie

  • Members
  • Pip
  • 12 posts
  • Devices:Orange San Fransisco
Thanks for that, here's what I did:

Installed ADB drivers.

adb remount
adb shell
cd system/media/audio/ui
mv camera_click.ogg camera_click.ogg.back
mv VideoRecord.ogg VideoRecord.ogg.back

No more annoying sounds!

I decided to just rename them in case it broke.


#4
Gibbo501

Gibbo501

    Regular

  • Members
  • PipPip
  • 106 posts
  • Gender:Male
  • Location:Wirral, UK
  • Devices:Orange SF
In Astro File Manager you could go to:

/system/media/audio/ui

and rename camera_click.ogg

Not tried this though.


#5
rjm2k

rjm2k

    Hardcore

  • Members
  • PipPipPipPipPipPip
  • 1,096 posts

View PostGibbo501, on Oct 6 2010, 09:04, said:

In Astro File Manager you could go to:

/system/media/audio/ui

and rename camera_click.ogg

Not tried this though.
You still need adb to remount rw so may as well do the rename/delete too


#6
amare

amare

    Newbie

  • Members
  • Pip
  • 15 posts

View Postrjm2k, on Oct 6 2010, 07:51, said:

yes if you know how to use adb and have a rooted phone

assuming wireless connection and adbwireless installed on phone

adb connect phoneip
adb remount
adb shell
   rm /system/media/audio/ui/camera_click.ogg
   rm /system/media/audio/ui/VideoRecord.ogg
reboot
I dont know about adb. Thanks anyway.


#7
amare

amare

    Newbie

  • Members
  • Pip
  • 15 posts

View Postamare, on Oct 6 2010, 17:53, said:

I dont know about adb. Thanks anyway.
Since there seems to be no other way I had a look on google about adb and it seemed simple. Whadya know it was  :)  and I've now got rid of the camera sound. Thanks guys.


#8
dav_dako

dav_dako

    Regular

  • Members
  • PipPip
  • 106 posts

View Postamare, on Oct 7 2010, 01:31, said:

Since there seems to be no other way I had a look on google about adb and it seemed simple. Whadya know it was  :)  and I've now got rid of the camera sound. Thanks guys.

Quick guide for the rest of us android noobs?

No problem monkey socks. Your best bet is to follow your rubber duck, go right past the Christmas tree and then you need... let me think... Yeah, you want to follow your saxophone till you reach the Y-fronts and bobs your teapot. Alright ice cream cone.

#9
rjm2k

rjm2k

    Hardcore

  • Members
  • PipPipPipPipPipPip
  • 1,096 posts
Assuming you have clockwork recovery installed this should do the trick, copy to sd card, boot into recovery select apply zip from sd card and away you go.

Attached Files



#10
amare

amare

    Newbie

  • Members
  • Pip
  • 15 posts

View Postdav_dako, on Oct 7 2010, 15:53, said:

Quick guide for the rest of us android noobs?
http://theunlockr.co...ndroid-devices/

Followed that guide and got windows 7 drivers here http://android.modac...rivers-and-adb/

Then i loaded a command window and used one of the sets of commands in a post above.

Think that was it.


#11
dav_dako

dav_dako

    Regular

  • Members
  • PipPip
  • 106 posts
Thanks guys, will give it a go later.

No problem monkey socks. Your best bet is to follow your rubber duck, go right past the Christmas tree and then you need... let me think... Yeah, you want to follow your saxophone till you reach the Y-fronts and bobs your teapot. Alright ice cream cone.

#12
seg

seg

    Newbie

  • Members
  • Pip
  • 18 posts

View PostEd-, on Oct 6 2010, 07:45, said:

Thanks for that, here's what I did:

Installed ADB drivers.

adb remount
adb shell
cd system/media/audio/ui
mv camera_click.ogg camera_click.ogg.back
mv VideoRecord.ogg VideoRecord.ogg.back

No more annoying sounds!

I decided to just rename them in case it broke.

I tried the  above but got 'permission denied'  - transcript follows:


$ mv camera_click.ogg camera_click.ogg.org
mv camera_click.ogg camera_click.ogg.org
failed on 'camera_click.ogg' - Read-only file system
$ chmod 664 camera_click.ogg
chmod 664 camera_click.ogg
Unable to chmod camera_click.ogg: Read-only file system
$ remount rw
remount rw
remount: permission denied
$ exit

I have su'd and the phone is rooted.
Any ideas please?
Many thanks - seg

Edited by seg, 14 November 2010 - 06:20 PM.


#13
buneech

buneech

    Enthusiast

  • MoDaCo Ad Free
  • PipPipPip
  • 259 posts
  • Gender:Male
  • Location:Slovenia
  • Devices:ZTE Blade, SE Xperia Mini
  • Twitter:@buneech
Enter su before using these commands.

Posted Image

#14
rjm2k

rjm2k

    Hardcore

  • Members
  • PipPipPipPipPipPip
  • 1,096 posts
if you have clockwork just use the update zip earlier in the thread


#15
seg

seg

    Newbie

  • Members
  • Pip
  • 18 posts

View Postbuneech, on Nov 14 2010, 18:57, said:

Enter su before using these commands.

Thanks for your reply - as per my message above, I have already su'd - and as you see in my code above I have a '$' prompt not a '#' one.

Quote

$ exit
I have su'd and the phone is rooted.

Any more ideas, anyone?

seg

Edited by seg, 14 November 2010 - 09:29 PM.


#16
rjm2k

rjm2k

    Hardcore

  • Members
  • PipPipPipPipPipPip
  • 1,096 posts

View Postseg, on Nov 14 2010, 21:27, said:

Thanks for your reply - as per my message above, I have already su'd - and as you see in my code above I have a '$' prompt not a '#' one.
Any more ideas, anyone?

seg

Can't really be made any easier than my post above.


#17
Hans Gruber

Hans Gruber

    Regular

  • MoDaCo Ad Free
  • PipPip
  • 66 posts
  • Gender:Male
  • Location:Norwich
  • Devices:Huawei Ascend G300

View Postrjm2k, on Oct 7 2010, 15:02, said:

Assuming you have clockwork recovery installed this should do the trick, copy to sd card, boot into recovery select apply zip from sd card and away you go.

Thanks for that, is it possible to remove the auto-focus beep as well?


#18
buneech

buneech

    Enthusiast

  • MoDaCo Ad Free
  • PipPipPip
  • 259 posts
  • Gender:Male
  • Location:Slovenia
  • Devices:ZTE Blade, SE Xperia Mini
  • Twitter:@buneech

View Postseg, on Nov 14 2010, 22:27, said:

Thanks for your reply - as per my message above, I have already su'd - and as you see in my code above I have a '$' prompt not a '#' one.
Any more ideas, anyone?

seg
Have you tried this in a terminal emulator directly on the phone?
When you enter su in a terminal emulator, the superuser app should pop up and ask to allow this action.

Posted Image

#19
seg

seg

    Newbie

  • Members
  • Pip
  • 18 posts

View Postbuneech, on Nov 15 2010, 13:09, said:

Have you tried this in a terminal emulator directly on the phone?
When you enter su in a terminal emulator, the superuser app should pop up and ask to allow this action.

This is what I did:
connected the phone to the PC via USB
Run cmd, then in the command window:

> adb devices - got a device name back (I am doing this from memory, so cannot remember the exact name, it was something like P234B)

then
>adb shell
#su
su
$

I DO NOT THINK I SAW a notification on the phone - perhaps because the phone had been already rooted?

then navigated into the system/media/audio/ui folder (again, from memory) and then tried to rename the files as per the Original Post.

@rjm2k: Thank you for your suggestion and I will probably try this - it's just that I want to understand what I am doing wrong here.

Edited by seg, 15 November 2010 - 03:53 PM.


#20
Rooster#1

Rooster#1

    Regular

  • Members
  • PipPip
  • 83 posts
  • Location:Nottingham UK
  • Devices:San Francisco (ZTE Blade)
  • Twitter:@none

View Postrjm2k, on Oct 7 2010, 16:02, said:

Assuming you have clockwork recovery installed this should do the trick, copy to sd card, boot into recovery select apply zip from sd card and away you go.

Applied this, but the sound is still there !  B)     Do I need to alter a setting or something  ?
Thanks





0 user(s) are reading this topic

0 members, 0 guests, 0 anonymous users