[MOD] Volume Boost for i9506 ver. 4.3

Srmusico

Member
Mar 1, 2014
23
9
0
This Mod is designed to increase the limit output volume of your Galaxy S4 i9506.

How to install:

1- Download the file of this post.

2- Download Root Browser in your S4 (need Root)

3- Open with Root Browser : System / etc / snd_soc_msm , place the file that you have downloaded here (and replace the existing file)

4- Set parameters to rw-r-r (permissions)

5- Finally, restart your device and... ready!

thanks to the user Cortisan to prepare our mod version. :good:


Tell me if it doesn´t work for you.
 

Attachments

Last edited:

bautigar

Member
Oct 18, 2013
19
2
0
This Mod is designed to increase the limit output volume of your Galaxy S4 i9506.

How to install:

1- Download the file of this post.

2- Download Root Browser in your S4 (need Root)

3- Open with Root Browser : System / etc / snd_soc_msm , place the file that you have downloaded here (and replace the existing file)

4- Set parameters to rw-r-r (permissions)

5- Finally, restart your device and... ready!

thanks to the user Cortisan to prepare our mod version. :good:


Tell me if it doesn´t work for you.
don't work, I have needed to reinstall the rom and applications
 

DualJoe

Senior Member
Oct 12, 2011
2,046
927
193
de
You can use this diff on CM (/system/etc/mixer_paths.xml). The example below lowers from 84db(?) to 72.
Code:
--- mixer_paths-84.xml
+++ mixer_paths.xml
@@ -544,7 +544,7 @@
 
 	<path name="speaker">
 		<path name="spk" />
-		<ctl name="RX7 Digital Volume" value="84" />
+		<ctl name="RX7 Digital Volume" value="72" />
 		<ctl name="SPK DRV Volume" value="7" />
 		<ctl name="COMP0 Switch" value="1" />
 	</path>
Optionally, a companion init.d script to patch the latest version after rom update.
Code:
#!/system/bin/sh
# Patching mixer_paths.xml (changing volume)
if [ ! -e /system/etc/.mixer_paths.xml_is_patched ]; then
	mount -o remount,rw /system
        cd /system/etc
	patch mixer_paths.xml < /data/local/bin/mixer_paths.patch
	if [ $? == 0 ]; then
		touch .mixer_paths.xml_is_patched
	else
		touch .mixer_paths.xml_is_patched
		touch .mixer_paths.xml_patching_error
	fi
        mount -o remount,ro /system
fi
 
Last edited: