[MOD]Volume Boost v1.3 (Headphone & Speaker! Easy Install! No Distortion!) - G2 Android Development

This mod will increase your volume output on any LG G2 variant running KitKat 4.4.x firmware!
I've packaged up a recovery flashable zip that will modify /system/etc/mixer_paths.xml on your device and increase the volume output.
Just flash it and you'll be boosted!
DOWNLOAD
Recommended Headphone Pack: 6520
If that's too loud you can try the 6218
Additional volume options here thanks to @willi_3609
http://forum.xda-developers.com/showthread.php?p=53779911 since I no longer have a g2 I won't be making any more updates.
Use at your own risk!
And please give feedback.
XDA:DevDB Information
[MOD]Volume Boost v1.3 (Headphone & Speaker! Easy Install! No Distortion!), Tool/Utility for the LG G2
Contributors
iXNyNe
Version Information
Status: No Longer Updated
Current Stable Version: 1.3
Created 2014-04-01
Last Updated 2014-11-02

FAQ
Q: how do I install this mod?
A: flash it from recovery. You need a custom recovery like TWRP, CWM, Philz, etc.
Q: what devices can this be used on?
A: any LG G2 variant (d800/d801/d802/d803/d804/d805/ls980/vs980)
Q: will this work with my ROM/firmware?
A: any stock or aosp based KitKat firmware should work. If you have troubles, please post here!
Q: is this mod compatible with other audio enhancements (like viper or other equalizers)?
A: yes. It should work with any of them.
Q: does this mod cause distortion?
A: not that I have experienced. If it does for you, please post here! Keep in mind combining other audio enhancers or mods may cause distortion, but you would likely have that distortion just by using the other enhancer or mod alone without this mod.
Q: can you make it louder?
A: this mod should make your headphone volume pretty loud, but if it's still not enough and many people ask for louder I might make a secondary zip to increase it further.
Q: the zip file only has a META-INF folder! Where's the modified mixer_paths.xml?
-or-
Q: can I extract the zip and install it manually?
A: the zip actually modifies YOUR mixer_paths.xml so that it's only changing a few values and not completely overwriting whatever comes with your firmware. Because of this you can only install by flashing the zip.
Q: why did you choose 65 for RX1 Digital Volume and RX2 Digital volume? Why did you choose 20 for HPHL Volume and HPHR Volume?
A: on CyanogenMod (and I believe all aosp based G2 firmware) the highest value that is set anywhere in mixer_paths.xml for RX1/2 is 65. Likewise the highest HPHL/R found is 20. So I applied these values for headphone output which by default has lower values.
Q: what's the difference between RX1/2 and HPHL/R?
A: i believe RX1/2 are the digital volume, and HPHL/R are the analog volume. But I could be wrong.
The idea to modify this setting came from the following threads:
Make sound louder in all KK Roms and LG KK for F320 (update 16/02/14)
@MaZaGnGy
[FIX] Speaker playback distortion solution (CM11/AOSP 4.4 only)
@darkobas
[MOD] LG G2 Headphone/Speaker Volume Boost
@sil0 OP / @nismology Post #226

Changes
v1.3 / 20140412
-Added speaker 65 zip. This is separate from the Headphone mods so you can pick and choose if you want one or both.
-Renamed original zip to headphone 6520. This is the recommended pack for headphones.
-Added headphone 6218 zip for lower volume.
v1.2 / 20140403
-Should now work on any 4.4.x firmware (stock or aosp)
v1.1 / 20140402
-Set RX1 & RX2 Digital Volume to 65 (in addition to HPHL & HPHR to 20)
v1.0 / 20140401
-Set HPHL & HPHR Volume to 20
Download link now in OP

Great sound but i think that you have to make the bass a little lower..
Στάλθηκε από το g2 μου χρησιμοποιώντας Tapatalk

xatou said:
Great sound but i think that you have to make the bass a little lower..
Στάλθηκε από το g2 μου χρησιμοποιώντας Tapatalk
Click to expand...
Click to collapse
To reduce bass try the distortion fix thread by @darkobas in the op.
Sent from my LG-D800 using Tapatalk

iXNyNe said:
To reduce bass try the distortion fix thread by @darkobas in the op.
Sent from my LG-D800 using Tapatalk
Click to expand...
Click to collapse
1.2 zip is borked. Look inside the zip

sacredsoul said:
1.2 zip is borked. Look inside the zip
Click to expand...
Click to collapse
Make sure your download is correct. I checked my original local copy and compared to one I downloaded from the XDA thread and they matched exactly according to an md5 check.
File: lgg2_volume-1.2-signed.zip
MD5: ca:78:a8:29:df:47:69:18:2a:2c:ec:4f:61:6f:44:0b
SHA1: 16:bb:8f:42:58:11:31:d9:76:ea:50:0f:cf:e8:bd:1e:dc:ee:b7:4e
Sent from my LG-D800 using Tapatalk

iXNyNe said:
Make sure your download is correct. I checked my original local copy and compared to one I downloaded from the XDA thread and they matched exactly according to an md5 check.
File: lgg2_volume-1.2-signed.zip
MD5: ca:78:a8:29:df:47:69:18:2a:2c:ec:4f:61:6f:44:0b
SHA1: 16:bb:8f:42:58:11:31:d9:76:ea:50:0f:cf:e8:bd:1e:dc:ee:b7:4e
Sent from my LG-D800 using Tapatalk
Click to expand...
Click to collapse
All I see inside the folder is the META-INF file...

sacredsoul said:
All I see inside the folder is the META-INF file...
Click to expand...
Click to collapse
That's all it needs.
When you flash the script doesn't replace your existing mixer_paths.xml with a new one, just modifies the one your firmware provides.
Here is the code for the 1.2 updater-binary
Code:
#!/sbin/sh
RECOVERY_SCRIPT_FD=$2
set -o pipefail
ui_print() {
echo "ui_print $1" > /proc/self/fd/$RECOVERY_SCRIPT_FD
echo "ui_print" > /proc/self/fd/$RECOVERY_SCRIPT_FD
}
mount /system
mount -o rw,remount /system
x=''
y=''
sed -i -e "s/$x/$y/g" /system/etc/mixer_paths.xml
ui_print "Digital Volume set to 65"
x=''
y=''
sed -i -e "s/$x/$y/g" /system/etc/mixer_paths.xml
ui_print "Headphone Volume set to 20"
exit $?
Which reminds me I should have changed the print line to also mention the digital volume being set to 65.
Edit: never mind, it does on a different line, it's too early and I haven't had enough coffee yet.
Sent from my LG-D800 using Tapatalk

iXNyNe said:
That's all it needs.
When you flash the script doesn't replace your existing mixer_paths.xml with a new one, just modifies the one your firmware provides.
Here is the code for the 1.2 updater-binary
Code:
#!/sbin/sh
RECOVERY_SCRIPT_FD=$2
set -o pipefail
ui_print() {
echo "ui_print $1" > /proc/self/fd/$RECOVERY_SCRIPT_FD
echo "ui_print" > /proc/self/fd/$RECOVERY_SCRIPT_FD
}
mount /system
mount -o rw,remount /system
x=''
y=''
sed -i -e "s/$x/$y/g" /system/etc/mixer_paths.xml
ui_print "Digital Volume set to 65"
x=''
y=''
sed -i -e "s/$x/$y/g" /system/etc/mixer_paths.xml
ui_print "Headphone Volume set to 20"
exit $?
Which reminds me I should have changed the print line to also mention the digital volume being set to 65.
Edit: never mind, it does on a different line, it's too early and I haven't had enough coffee yet.
Sent from my LG-D800 using Tapatalk
Click to expand...
Click to collapse
Thanks. I feel like an idiot. Trying it out now

Also, it looks like XDA didn't correctly display the code I tried to post. Anyway you can look inside the META-INF folder and see the updater-binary
Sent from my LG-D800 using Tapatalk

iXNyNe said:
v1.2
-Should now work on any 4.4.x firmware (stock or aosp) QUOTE]
Will this affect/improve sound output on a bluetooth connection also? I'm using a small Logitech bluetooth speaker.
Sent from me to u...
Click to expand...
Click to collapse

forgiven90 said:
iXNyNe said:
v1.2
-Should now work on any 4.4.x firmware (stock or aosp) QUOTE]
Will this affect/improve sound output on a bluetooth connection also? I'm using a small Logitech bluetooth speaker.
Sent from me to u...
Click to expand...
Click to collapse
This mod only affects the output volume of the headphones.
I don't think the Bluetooth output can be modified in the same way, but I'll look, and if it can I'll release a separate zip in this thread.
Sent from my LG-D800 using Tapatalk
Click to expand...
Click to collapse

Nope I don't think I can do Bluetooth volume with the mixer file
Sent from my LG-D800 using Tapatalk

Thanks for this going to give it a try now!

DrugsBunny said:
Where is the download link... The OP says 3rd post and the 3rd post says its now in the OP but its in neither!!
Click to expand...
Click to collapse
Sorry I was just in the middle of cleaning up the OPs
The link is now in the first OP.
And here it is also http://d-h.st/users/NyNe/?fld_id=34873
Sent from my LG-D800 using Tapatalk

I can just flash this in recovery correct?

toomuchgame441 said:
I can just flash this in recovery correct?
Click to expand...
Click to collapse
Yes.
Sent from my LG-D800 using Tapatalk

I'll be experimenting with a second mod to increase the speaker volume today. Any volunteers to test?
Edit
Well the first experiment just lead to lots of distortion setting the speaker to 70. The stock speaker volume is satisfactory to me without modifying it, so I was only testing for my curiosity. It seems like ~65 is as loud as the speaker should be set (and it already is on aosp based firmware, and probably stock too).
I won't be making a speaker volume mod unless requested. If you really want it, send me your /system/etc/mixer_paths.xml file.
Sent from my LG-D800 using Tapatalk

This mod is amazing made my headphones and portable speaker sound so much better i used to hate ASOP because of the poor sound quality but this boosts it and then some! Ive tried it on a few ASOP 4.4.2 ROMS and works perfect everytime using it on carbon rom atm good work!

Related

Soundmod for Kit Kat

I used to be on acid sound engine on stock jb Roms, now that I've updated to official kit kat release (sling 2.1) I'm on the lookout for the best audio mod that works with kit kat on the lgog.
I managed to flash Xloud-Beats-Dsp Manager mod for Nexus 5 on my phone, and it works fine. Using it with poweramp and viper4android. Although, it's not quite as crisp as acid sound.
What are you guys using?
Sent from my LG-F180L using XDA Free mobile app
There are a quite good number of MOD's in for KitKat G2, when I try I will give feedback here...
In JB I was using Viper4Android.
Well I've just taken the simplest way to MOD my G sound...
I've installed Viper4android from here: http://vipersaudio.com/blog/?page_id=48.
In this thread (http://forum.xda-developers.com/showthread.php?t=2324454) you can find different setup's to configure the sound as you like, another option is to use the IRS (Impulse Response Sample): http://vipersaudio.com/blog/?page_id=91 that are profiles files that you import to setup the sound.
So basically it's only this and now I'm testing different option to choose the better one for me.
rimsilva said:
Well I've just taken the simplest way to MOD my G sound...
I've installed Viper4android from here: http://vipersaudio.com/blog/?page_id=48.
In this thread (http://forum.xda-developers.com/showthread.php?t=2324454) you can find different setup's to configure the sound as you like, another option is to use the IRS (Impulse Response Sample): http://vipersaudio.com/blog/?page_id=91 that are profiles files that you import to setup the sound.
So basically it's only this and now I'm testing different option to choose the better one for me.
Click to expand...
Click to collapse
Viper4Android isn't working for me in the 4.4.2 Kitkat leak.
ITzRicardo94 said:
Viper4Android isn't working for me in the 4.4.2 Kitkat leak.
Click to expand...
Click to collapse
It works for me. I'm running Sling ROM.
I've made a small change in build.prop like it's mentioned on Viper4android thread (not sure if this is mandatory...)
------------
1. ROOT your device.
2. Install busybox if doesn’t come with root.
3. Modify build.prop (Thanks [email protected])
a. Open up /system/build.prop in text editor using any file explorer with root access.
b. Change the line (If you can’t find these lines, skip this step.)
Ipa.decode=true to lpa.decode=false
tunnel.decode=true to tunnel.decode=false
lpa.use-stagefright=true to lpa.use-stagefright=false
rimsilva said:
It works for me. I'm running Sling ROM.
I've made a small change in build.prop like it's mentioned on Viper4android thread (not sure if this is mandatory...)
------------
1. ROOT your device.
2. Install busybox if doesn’t come with root.
3. Modify build.prop (Thanks [email protected])
a. Open up /system/build.prop in text editor using any file explorer with root access.
b. Change the line (If you can’t find these lines, skip this step.)
Ipa.decode=true to lpa.decode=false
tunnel.decode=true to tunnel.decode=false
lpa.use-stagefright=true to lpa.use-stagefright=false
Click to expand...
Click to collapse
Worked fine for me without modifying it, sling rom aswell
Sent from my ASUS Transformer Pad TF700T using XDA Free mobile app
Viper4android works like a charm for me on sling 2.1 too, especially with the irs files!
They can be found here :
http://forum.xda-developers.com/showthread.php?t=2456073
Sent from my LG-F180L using XDA Free mobile app
My current setup:
Carnage 3.0 setup + cyberlink_HP_Recommended.wav (IRS file)
robotzki said:
Viper4android works like a charm for me on sling 2.1 too, especially with the irs files!
They can be found here :
http://forum.xda-developers.com/showthread.php?t=2456073
Sent from my LG-F180L using XDA Free mobile app
Click to expand...
Click to collapse
I wanted to put irs files in the kernel folder,but the app didn't creat it's folder :/ but the soundmod it's working...
dreamkill3r said:
I wanted to put irs files in the kernel folder,but the app didn't creat it's folder :/ but the soundmod it's working...
Click to expand...
Click to collapse
You have to do it manually...
rimsilva said:
You have to do it manually...
Click to expand...
Click to collapse
thanks,you can post (or someone else) your configuration?
dreamkill3r said:
thanks,you can post (or someone else) your configuration?
Click to expand...
Click to collapse
Carnage it's in the link that I provide in previous page (this post): http://forum.xda-developers.com/showpost.php?p=42584039&postcount=2
IRS file (enable convolver and import IRS from "impulse Response") it's from this thread:http://forum.xda-developers.com/showthread.php?t=2216193
Edit: Try Audio Boost - Listening Excitement from here: http://forum.xda-developers.com/showthread.php?p=53116133
Another nice soundmod with Viper4android built in!
Pon-3 Audio Mod
http://forum.xda-developers.com/showthread.php?t=2530976
rimsilva said:
Another nice soundmod with Viper4android built in!
Pon-3 Audio Mod
http://forum.xda-developers.com/showthread.php?t=2530976
Click to expand...
Click to collapse
Exactly what I was initially looking for, will try this out asap!
Sent from my LG-F180L using XDA Free mobile app

[Q] How can I boost volume to watch films without headphones?

I am root and I have installed Xposed Framework...
Tks
Jonho77 said:
I am root and I have installed Xposed Framework...
Tks
Click to expand...
Click to collapse
Search for "viper for android" install that and you can boost speaker volume nicely.
You can also modify your mixer_paths.xml file to boost speaker volume but viper is much better.
Thanks for your help, but I can't install viper ?. I'll try the suggested modification.
Jonho77 said:
Thanks for your help, but I can't install viper ?. I'll try the suggested modification.
Click to expand...
Click to collapse
In order to install viper you will have to copy audio.effects.conf from system/vendor/etc to system/etc then vipe will install and work as adverised (provided you also install busybox that is)
For some reason that file is not present in the system/etc folder and it needs to be there as well as system/vendor/etc for the viper installation to work.
Took me some work and help from others to figure that out in a round about way.
Oh and when you copy it make sure you change permissions to match everything else in that folder. You won't regret it, if you have any other problems the guys in the viper main thread are super helpful. or you can ask here and I will be glad to help also.
you can also edit the default_gain.conf files in system/etc
edan1979 said:
you can also edit the default_gain.conf files in system/etc
Click to expand...
Click to collapse
Could anyone tell me which options in the .conf file to edit ?
Why not just install Mxplayer, it automatically allows you to boost the volume, just enable it in the audio settings. imo there is no better player for Android.
Will it boost the volume past the limits set in the default_gain
Also, will it boost the volume of YouTube clips through my headphones ?
( which is what I actually want to do)
woodstok said:
Will it boost the volume past the limits set in the default_gain.conf file ?
Click to expand...
Click to collapse
It will boost up to 200% which i find is plenty loud enough.
Thanks I'll go grab it and check it out
woodstok said:
Thanks I'll go grab it and check it out
Click to expand...
Click to collapse
you also get the added bonus that it re-enables ac3 and dts support if you install this codec http://forum.xda-developers.com/apps/mx-player/mx-player-custom-codec-dts-support-t2156254

[MOD][S6] GALAXY S6 Edge - Headphone Boost(CWM) UPDATE 7!

S6 Headphone Boost Volume Boost ¸¸♬·¯·♩¸¸♪·¯·♫
Hi , this is mod for S6 Edge Headphone boost, made by stalli0nUK recipe.
U need to flash this under CWM
Flash Guide:
Supported model: Galaxy S6 Edge, G925F/I (could work on other unlocked models too, like T-Mobile one
1- Download TWRP v2 recovery |
2 Rooted Galaxy S6 Edge
3 - Reboot recovery.
4 - Flash S6_Volume_Boost_Headphone.zip
You’ll see TWRP 2.8.6.0 on your Galaxy S6 Edge in all its glory. Enjoy!
That’s it. If you face any issues, i am not responsible )
These is just tested on the S6 EDGE, other variants use with caution.
Feel free to ask anything.
Thanks to : stalli0nUK
UPDATE 3
Twrp2 recovery is out with great install tutorial, so folow that and flash headphone zip.
UPDATE 4
I also add mixerpaths xml in post , and u can copy that to system/etc if u have root, just overwrite old file(just back it up first)... and of course set the right permisions for the file 644
Value is 39 which is very loud
If you wanna change on your own this is what u need to change :
HPOUT1L Input 1 Volume" value="39"
HPOUT1R Input 1 Volume" value="39"
Stock value is 32...
Hope this will help a lot of u guys
Link mixerpaths.xml
http://www55.zippyshare.com/v/dyIXkDuk/file.html
UPDATE 5
I attach V40 loudness TWRP file this is much louder than V37 version for anybody who wants louder.
)
UPDATE 6
I Added V40 + Speekers Loudnes V38 (very Loud) )
Also will try to make in call volume mod also and post it later.
UPDATE 7 (High volume notification)
For me best and easiest way to do this is: plug in your headphones turn the volume to max, go to music app , settings , turn smart volume on and u will get a message that (default volume is now 15 bla bla... ) then go to youtube and test it, and voila no more high volume notification
Br
Can I install the headphone boost .zip file with the CWM Root?
Why have I got to install the TWRP File?
One more question:
Can I just use the mixer_paths.xml file and put it into the etc folder and give it rw-r-r- permissions? (When I have root)
Thank you
lienot
U can do it manualy yeah .
If its easier for u why not. Just fix permissions and thats it.
Sent from my SM-G925F using XDA Free mobile app
Hi
Just to confirm it works. with your procedure
On my s6 edge 64 International
thanks
The link not work for TWRP recovery :crying:
I fix the links, now it should be good
Sent from my SM-G925F using XDA Free mobile app
What change in this file for boost call speaker and hadset for more loud call...
I can check , and let you know or i can make update with versio for call and lodspeeker.
Br
Sent from my SM-G925F using XDA Free mobile app
So i wait thx
I never have had the luck to feel happy about two things on the Android devices I have owned so far: the battery life and the speaker volume output. But why....?:good:
kajkac said:
UPDATE 1
Beacouse TWRP newboot.img image breaks call sound flashback stock boot image after flashing (will bring back white twrp)
but your call sound will work.
STOCK boot.img
http://www44.zippyshare.com/v/sOC4urRm/file.html
UPDATE 2
After a few tests, when you flash back to stock recovery, flash back TWRP S6 EDGE (not zeroltetmo.img) recovery.
twrp-2.8.6.0-zeroflte.img is correct one.
Now you will have working TWRP and call sound without white screen.
Br
Click to expand...
Click to collapse
Just an FYI, I did as above, and ended up with a black screen in recovery after flashing twrp-2.8.6.0-zeroflte.img
I had to flash stock firmware in Odin, which then failed. However a quick flash of CF Auto Root again, and phone booted as normal.
kajkac said:
S6 Headphone Boost Volume Boost ¸¸♬·¯·♩¸¸♪·¯·♫
Hi , this is mod for S6 Edge Headphone boost, made by stalli0nUK recipe.
U need to flash this under CWM
Flash Guide:
Supported model: Galaxy S6 Edge, G925F/I (could work on other unlocked models too, like T-Mobile one
1- Download TWRP v2 recovery |
2 Rooted Galaxy S6 Edge
3 - Reboot recovery.
4 - Flash S6_Volume_Boost_Headphone.zip
You’ll see TWRP 2.8.6.0 on your Galaxy S6 Edge in all its glory. Enjoy!
That’s it. If you face any issues, i am not responsible )
These is just tested on the S6 EDGE, other variants use with caution.
Feel free to ask anything.
Thanks to : stalli0nUK
UPDATE 3
Twrp2 recovery is out with great install tutorial, so folow that and flash headphone zip.
Br
Click to expand...
Click to collapse
First of all, thank you for the good job.
Tested and working
But i do have a question.....
Can we go a little LOUDER?? If so, can you upload a modded file or tell me how to change yours so i can go just a little bit louder?
Thank you again.
I would also love a bigger headphones boost. Thanks in advance, this mod is super useful for me
Drumm3r said:
First of all, thank you for the good job.
Tested and working
But i do have a question.....
Can we go a little LOUDER?? If so, can you upload a modded file or tell me how to change yours so i can go just a little bit louder?
Thank you again.
Click to expand...
Click to collapse
Line 2500/2501:
Code:
<ctl name="HPOUT1L Input 1 Volume" value="32" />
<ctl name="HPOUT1R Input 1 Volume" value="32" />
Current modification changes the 32 to 37. It's pretty darn loud for me and I might reduce it .
You can consider changing it to your liking and copy the xml into \system\etc. But honestly, I'm not sure how large this value is allowed.
Thanks kajkac for the mod!
More people might consider copying the XML instead of TWRP since PingPong root is becoming widespread :good:
Yes xml copy is also fine, i tested with 37 and is loud for me, but with value of 39 or 40 sound became cracling especialy vith viper sound but is damm loud, i will atach xml file in post also.
Br
Sent from my SM-G925F
headset volume upgrade and s6 edge is dead.
I am downloading now from sammobile the newest 5.02 and lets see how it will go. My phone is not turning on at all i just can see samsung in white on screen...
I never experienced this problem during mediapath.xml issue. after you replce this file you always haveto reboot the phone to test the headset volume but it is f..cked now.
Anyway guys be carefull or just be happy with volume level 37, dont try 38 like me...
Thank you
Changed it to 40. Thats enough.
---------- Post added at 01:19 AM ---------- Previous post was at 01:15 AM ----------
40 is great for me.
My beats can haldle it
kalafat said:
I am downloading now from sammobile the newest 5.02 and lets see how it will go. My phone is not turning on at all i just can see samsung in white on screen...
I never experienced this problem during mediapath.xml issue. after you replce this file you always haveto reboot the phone to test the headset volume but it is f..cked now.
Anyway guys be carefull or just be happy with volume level 37, dont try 38 like me...
Click to expand...
Click to collapse
You sure your problem is because of the volume value?
I'm thinking the permissions of the file we're right..
Drumm3r said:
Thank you
Changed it to 40. Thats enough.
---------- Post added at 01:19 AM ---------- Previous post was at 01:15 AM ----------
40 is great for me.
My beats can haldle it
Click to expand...
Click to collapse
Dont blow your ears out ))
Sent from my SM-G925F using XDA Free mobile app
Pls

x3reme SoundMod

Hear the big difference with x3reme music and theater mod v2!!!
Supported with Sense 7-8, Marshmallow 6.0+
Changelog: 8/25/2016
Added HiFi Audio libs-x64 and sound effects and other files
How to install:
1) Download and move it to your internal storage
2) Reboot to Recovery
3) Install the zip like any other rom/mod
4) Do Not wipe anything, just reboot and hear the difference!!!
Side Note: Make backup if it breaks some settings send your me build.prop from the rom your using for a fix :good:
Download Below:
x3remeDSv2
It won't flash , script error
x3reme85 said:
Hear the big difference with x3reme music and theater mod!!!
Supported with Sense 7, Marshmallow 6.0
How to install:
1) Download and move it to your internal storage
2) Reboot to Recovery
3) Install the zip like any other rom/mod
4) Do Not wipe anything, just reboot and hear the difference!!!
Click to expand...
Click to collapse
uhhh this zip only contains a Ds.apk and a dolby config which is the stock file of M9's BoomSound presets :s am I missing something here?
why do you use/took xposed framework installer and just added some files into it, which even won't really flash properly..
DeeZZ_NuuZZ said:
why do you use/took xposed framework installer and just added some files into it, which even won't really flash properly..
Click to expand...
Click to collapse
sorry everyone put in the wrong zip file thanks for the heads up :good: accidently deleted the wrong file had to do it over again lol its fix and ready to flash as just tested it myself
ZeroInfinity said:
uhhh this zip only contains a Ds.apk and a dolby config which is the stock file of M9's BoomSound presets :s am I missing something here?
Click to expand...
Click to collapse
It's an updated Ds.apk and its not a stock file its been modified which is to make the speakers more louder.
sorry to say, but it sounds weird on headphones and also speakers output is even worse then stock
DeeZZ_NuuZZ said:
sorry to say, but it sounds weird on headphones and also speakers output is even worse then stock
Click to expand...
Click to collapse
Yeah thought so too so I added another file to fix that should be better now thanks for your opinion :good:
New Update Changelog: 8/24/2016
Added HiFi Audio libs x64 and sound effects
Has anyone flashed it yet? ��
didn't tried yet, but since this needs sense rom, you need to edit the HTC_audio_effects.conf in /system/etc/ not the audio_effects. where did you take the libs from?
@ZeroInfinity please take a look
New updated made more fixes boomsound setting and presets works like a charm now. Backup if some settings are broken from your rom send your build.prop for a fix :good:
x3reme85 said:
New updated made more fixes boomsound setting and presets works like a charm now. Backup if some settings are broken from your rom send your build.prop for a fix :good:
Click to expand...
Click to collapse
sorry am not on sense rom for now, and when i switch back i will either install viper10 when it's out or ICE10 port.
DeeZZ_NuuZZ said:
didn't tried yet, but since this needs sense rom, you need to edit the HTC_audio_effects.conf in /system/etc/ not the audio_effects. where did you take the libs from?
@ZeroInfinity please take a look
Click to expand...
Click to collapse
Libs are from 10
x3reme85 said:
New updated made more fixes boomsound setting and presets works like a charm now. Backup if some settings are broken from your rom send your build.prop for a fix :good:
Click to expand...
Click to collapse
Have you even tried it yet?? Or are you hoping every 1else will
Æaa \../
it breaks audio on htc music player and kills boomsound on ICE10 port.
and why you put a complete build.prop inside the zip, instead of making a script which changes only th things it needs.
download link does not work
michakulik said:
download link does not work
Click to expand...
Click to collapse
This mod doesn't work anyway and it's old af
Sent from my Google Pixel 3 XL using XDA Labs

Speaker/Headphone Volume Booster For Galaxy Tabs S2

This is mod will boost the volume of the internal speaker and headphone.
Only tested in T810 variant.
Only for Rooted devices with TW Marshmallow 6.0.1!!
Flash ZIP file through TWRP recovery.
Enjoy it!!
> Download <
Could you make one for 5.1.1? for T710? or could this work?
CVLover said:
Could you make one for 5.1.1? for T710? or could this work?
Click to expand...
Click to collapse
If share me this files. I can try it.
/system/etc/default_gain.conf
/system/etc/mixer_paths.xml
Enviado desde mi SM-T810 mediante Tapatalk
i allready flashed it. it seems a bit louder didnt take a bakup of the original files ;( but worked for me
Working for T710 Wifi with Marshmallow (TW rom stock)
Thanks
Boot without root
https://play.google.com/store/apps/details?id=eu.pinpong.equalizer
Gesendet von meinem SM-T810 mit Tapatalk
IganKuhz said:
This is mod will boost the volume of the internal speaker and headphone.
Only tested in T810 variant.
Only for Rooted devices with Marshmallow 6.0.1!!
Flash ZIP file through TWRP recovery.
Enjoy it!!
> Download <
Click to expand...
Click to collapse
A zip for going back to stock?...please.
Work on T815 running CM13
Please add a revert file
Sent from my SM-T810 using Tapatalk
I should probably mention that at least on the SM-T710, this seems to interfere with the onboard mic, limiting me to using a headset. Restoring the original files fixed it though.
Wished there was an undo package but luckily I had a backup. Volume is increased, but increased to the point of crackling and distortion, and all it takes is a louder than average video clip or music sequence to do permanent damage. I used to edit max volume on my Nexus 5 that had KitKat and editing adiofiles were more straigforward. On Marshmallow I dont know where to begin on what to edit.
IganKuhz said:
If share me this files. I can try it.
/system/etc/default_gain.conf
/system/etc/mixer_paths.xml
Enviado desde mi SM-T810 mediante Tapatalk
Click to expand...
Click to collapse
Which file is the correct one please?
@IganKuhz
Apologies for awaking an old thread but would you be able or willing to provide instructions for Nougat on Tab S2?
Thank you.
I am wondering if will this work for the AT&T version, T817A?
T719y mixer path
Hi all..need some help here,im looking for t719y mixer path.anyone have the file or know where to find it?do reply me..thanks alot
darkfuneral666 said:
Hi all..need some help here,im looking for t719y mixer path.anyone have the file or know where to find it?do reply me..thanks alot
Click to expand...
Click to collapse
I have the t719. I can give you the mixer paths files for Nougat Stock Rom and Lineage OS 15.1.
The Nougat Stock Rom has 16 mixer paths files and the Lineage OS has only one file (mixer_paths_wcd9330.xml)
In any case, the mic won't properly work on Lineage for some reason. I haven't figured out why yet.

Categories

Resources