Direct audio playback through ALSA - Xiaomi Redmi Note 3 Themes, Apps, and Mods

I'M NOT RESPONSIBLE FOR YOUR DEVICE! USE AT YOUR OWN RISK!
There is an app called AlsaPlayer which can play loseless FLAC/APE audio without using android's APIs.
You can read about the player and it's benefits in original thread: https://forum.xda-developers.com/general/general/hi-fi-playback-android-developers-t3011925
Source code with my changes: https://github.com/cerg2010cerg2010/alsaplayer
So I made it to work on our device, all you need is attached apk and a kernel that allows writing to "RX1 Mix Digital Volume" and "RX2 Mix Digital Volume" controls. For example, AGNi 12.9 doesn't allow us to do this, but the stock kernel from LokManSiu's repo works fine. I didn't tried the others.
_Currently_ playback works only with headphones. Also if you want to play mp3/aac/others with this player (without android of course), go to Settings -> Device name and choose (Compress1). This will utilze your codec instead of software decoding and reduce CPU usage and power consumption. Full list of formats supported by our device: https://github.com/rn3-los15/androi...oc/msm/qdsp6v2/msm-compress-q6-v2.c#L656-L667
And if you want to see or change your codec settings then find an app called "AlsaMixer" and use a patched kernel that workarounds errors when reading ALSA controls. You can find my "ALSA-friendly" kernel in attachment, it is based on LineageOS from LokManSiu. I'm also attached a patch with my changes.
If you are a random guy who wants this on your own device, there is a short info on cards.xml configuration:
First of all, you need your card name. You can get it from /proc/asound/cards. For example:
Code:
0 [msm8976tashalit]: msm8976-tashali - msm8976-tashalite-snd-card
msm8976-tashalite-snd-card
card name will be "msm8976-tashalite-snd-card".
Next thing is paths. You need to figure out how codec needs to be prepared. This info lies in mixer_paths.xml in /system/etc or /vendor/etc. Search for paths called "deep-buffer-playback", "low-latency-playback", "compress-offload-playback", etc. Put values from there to "device" section.
And a device number. See /proc/asound/pcm. Example:
Code:
00-09: (Compress1) : : playback 1
Device number is 9.
Volume is hard one because android changes it with software, so you can't see any difference when dumping control vars (at least in my case). Use AlsaMixer and guess...
This blog post can help you: https://arunraghavan.net/2016/01/audio-devices-and-configuration/

Cool. Will try and report
---------- Post added at 12:56 AM ---------- Previous post was at 12:41 AM ----------
Couldn't play any format except for MP3.
What's the use of having a hi-res player if you can't play a hires file? I read from the original thread that flac and ape are supported but donno why mine doesn't.
Plus, the UI is nothing to write home about. I wouldn't use it even if it worked correctly. I hope you can design a better UI.
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}

Lol, this is a config issue... Maybe you need to change mixer_path in /sdcard/.alsaplayer/cards.xml. Can you please attach logcat & dmesg output? Which rom you are using?
And player design really looks bad, I'm not a professional designer but I can try to do something with that. Thanks for the report!

cerg2010cerg2010 said:
Lol, this is a config issue... Maybe you need to change mixer_path in /sdcard/.alsaplayer/cards.xml. Can you please attach logcat & dmesg output? Which rom you are using?
And player design really looks bad, I'm not a professional designer but I can try to do something with that. Thanks for the report!
Click to expand...
Click to collapse
I took a logcat during using the app and trying to play a flac file (which leads go the error message). Then I rebooted the device so the dmesg would be smaller and easier to read. I hope the logs help

mehrshad.shafaghi said:
I took a logcat during using the app and trying to play a flac file (which leads go the error message). Then I rebooted the device so the dmesg would be smaller and easier to read. I hope the logs help
Click to expand...
Click to collapse
Ok, I can't find something useful in logcat, except that you're playing a file from external sdcard, try to put it in internal storage. And I didn't mentioned that I don't need the boot dmesg, I need it after the initialization error happens. Thanks!

Damn. **** got a bit complicated.
So this is what's happened: I played a 24/192 flac file from the SDcard, didn't play (no sound, to be percise. No error pop-up). Then I copied that file to the root of internal storage. It's working now.
Then I went back to it's original folder in SDcard, all of the files from that folder are also working now. But the other folders' flac files still don't work.
Btw, the player sometimes makes a cracking sound after you resume the song
P.S: I used the application after reboot and before taking the dmesg. However I can still take new ones without rebooting if you want
Update: It's crashing again. I've attached the logs

mehrshad.shafaghi said:
Damn. **** got a bit complicated.
So this is what's happened: I played a 24/192 flac file from the SDcard, didn't play (no sound, to be percise. No error pop-up). Then I copied that file to the root of internal storage. It's working now.
Then I went back to it's original folder in SDcard, all of the files from that folder are also working now. But the other folders' flac files still don't work.
Btw, the player sometimes makes a cracking sound after you resume the song
P.S: I used the application after reboot and before taking the dmesg. However I can still take new ones without rebooting if you want
Update: It's crashing again. I've attached the logs
Click to expand...
Click to collapse
Hmm, that's strange... I though that was a permission issue (and maybe it is), but in dmesg I see a similar errors when I got headphone output not configured because of wrong path to mixer_paths.xml file, but in previous logcat it is read correctly (can't see anything related to it in new logcat because it's loaded when you start the player). Maybe Android is in conflict with the player? Try to select other device in settings, and choosing (Compress1) should fix the crackling sounds also.

Related

[SOLVED] App to generate list of cabs installed to device?

I've got 'CabBatchInstall' on my device, which is useful, as it allows you to install a batch of cabs one by one to your device, after updating the ROM or doing a hard reset. You generate a list by pointing at the directory where you've stored them, and can then edit the text file down to only include the cabs you want to install, rather than the entire contents of the directory you've pointed at. See the application thread at http://forum.xda-developers.com/showthread.php?t=407885.
This got me thinking: Is there an app for 'interrogating' your phone to see what you have installed on it at a particular point in time? After all, what you have installed is listed at Settings > Application > Remove Programs > And if there is, or if not, but someone would produce this sort of thing, could it be made to 'talk to' or be an addition to 'CabBatchInstall', so that the list of installed apps is the one 'CabBatchInstall' uses to do the batch install after hard reset or new ROM?
Just so you're aware, I've made similar post to this on the application thread I've linked above.
you could try listing the folders in Windows\AppMgr to a text file - MortScript which should be capable of this
Thanks p107r0, but I'm a complete novice when it comes to programming, mortscript and everything like that.
Oh well, I suppose it was a nice idea...
thats an excellent idea for an app. Sometimes I'll finally have my device set up exactly the way i like but it usually takes me going through and doing alot of installing/uninstalling to figure out what i want to get to that point. Or i'll flash a nee rom and really only want the apps that i had previously. This would prove quite helpful. Before I always had to resort to going to the "remove programs" screen and from there i would just keep scrolling down the list of apps and take screenshots so atleast i would know what they were.
Yorkshire Yellow said:
Thanks p107r0, but I'm a complete novice when it comes to programming, mortscript and everything like that.
Oh well, I suppose it was a nice idea...
Click to expand...
Click to collapse
I was bored and curious if I can do it, so here comes short script which lists all the folders in Windows\AppMgr to a text file on storage card,
of course you'll need MosrtScript to run it
Wow, what a usefull script!!
I make an installation (cab file) of it.
After you have installed - you find it in Startmenue-> Tools-> AppList...
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
There you find two Icons:
-One Icon to Make (create) the List.
-And one Icon to Open (show) the List.
Enjoy it...
Thanks to both p107r0 & BOBO_01.
BOBO_01 - how might I change the save location of the AppList? I'd like to save it to my Cabs folder on my storage card? (i.e. \Storage Card\Cab files)
Yes a helpfull little app. I use also mort for my things, but i have never thought about these app. Thank you...
BOBO_01 said:
I make an installation (cab file) of it.
Click to expand...
Click to collapse
nice work, thanks
Yorkshire Yellow said:
how might I change the save location of the AppList
Click to expand...
Click to collapse
find the script file "AppList.mscr" and change the vDestFile in first line to your preferred path
PS
below update of the script, which should - hopefully - produce sorted output file
p107r0 said:
nice work, thanks
find the script file "AppList.mscr" and change the vDestFile in first line to your preferred path
PS
below update of the script, which should - hopefully - produce sorted output file
Click to expand...
Click to collapse
Thanks to all - have been looking fo a App like this. A little scary when you see the list - in my case 120 apps and still hoping for more. Every day something else appears to be "loaded up". Great work to everyone
Why dont you try sk tools? It does exactly what you want.
A question
p107r0 said:
nice work, thanks
find the script file "AppList.mscr" and change the vDestFile in first line to your preferred path
PS
below update of the script, which should - hopefully - produce sorted output file
Click to expand...
Click to collapse
Thanks. As a newbie to MortScript, where do I install the script to, and how do I change 'vDestFile'? would that be by using the MortScript App, which I installed to my deviceas per your post of 10 December?
Yorkshire Yellow said:
where do I install the script to
Click to expand...
Click to collapse
the script file itself can be run from anywhere on your device via File Explorer
if you installed the cab prepared by BOBO_01, copy the script to \Program Files\AppList folder - hope it should work from there
Yorkshire Yellow said:
how do I change 'vDestFile'
Click to expand...
Click to collapse
the easiest way is to open the .mscr file in any notepad application on your PC
I use SK Tools, very easy.
leunam12 said:
I use SK Tools, very easy.
Click to expand...
Click to collapse
SK Tools is for sure a very powerful set of utilities,
however in terms of price nothing beats the free stuff.
As for keeping track of installed apps, I prefer to just keep on my Storage Card an orderly folder with cabs (moreless similar to the structure used in XDA_UC), this way I always know what is installed and where, also whether it needs installing at all.

How I fixed a broken note (can't open it, stuck constantly saving)

I had trouble with a note that crashed while recording and since then it wouldn't let me back into it. It just continually had the syncing icon in the middle of the note and when I tap on it to open, a toast message appears saying saving.
I have seen posts from others where they fixed a broken note by opening the note on another device that you sync your Evernote with, rename the tile or move the note and that fixed it.
kaze00 said:
Just ran into an issue where the app crashed while saving a note, and now I see the saving icon on top of the note, and if I click it nothing happens except I occasionally get a toast that says saving. I tried rebooting too. Going to try moving it around on the desktop and see what happens after a sync.
----
Update, editing on my PC by moving and changing the title seem to fix it.
Click to expand...
Click to collapse
Unfortunately for me though, my broken note was not synced to Evernote so I could not open it on another device.
Thank's to kool2zero who posted this reply from HTC because that helped me fix the problem.
kool2zero said:
Update from HTC regarding using notes offline and trying to sync an bunch of pictures and notes:
I understand that you would like to know if there is a way to retrieve a note that was apparently deleted from your HTC Flyer before it was able to sync. I tried to duplicate this issue by disabling Wi-Fi, creating four new notes with pictures, then reenabling Wi-Fi and attempting to sync but I was unable to replicate the issue. Your best bet for seeing if the notes are still cached somewhere would be to download a file explorer, such as Astro, Linda or ES File Explorer and search the contents. You may want start by looking under SD Card> .data> HTC Notes or if you know the name of the file you lost, try searching by the file name using the file explorer.
Click to expand...
Click to collapse
Click to expand...
Click to collapse
This is is a guide how to do it the way I did:
I basically went to the .data/HtcNotes folder on SD Card, found the files for my broken note, created a new temporary note, and overwrote that new note with my broken one.
* Create a new blank note on your flyer
* Record a few seconds of voice on that note (optional) only needed if your broken note has a recording on it you need to recover too (this is so it creates the.amr file to replace)
* Plug Flyer into a PC in Disk Mode (or use a file explorer app like htc suggest)
* Browse to .data/HtcNotes directory (see attached screenshot)
* Find the folder and files related to the broken note (tip: the folder should have the same 'modified date' as your broken note)
* Copy the folder to a temporary location
* Find the folder and files related to the new blank note
* Overwrite the blank note files with your broken note files, Note: make sure the filenames of your broken note are renamed to the blank note's filename
* Disconnect from PC and open notes app on Flyer
* You should now be able to open your note and sync it to Evernote.
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
It worked for me but I accept no responsibility if you loose your notes, any loss of data or any other problems at all if you try this.
Hope this helps anyone else who has trouble with notes
Thanks very much for the tip. Had been struggling for quite long. I had recorded a couple of interviews and as the recordings were quite heavy, the HTC Notes app was crashing. The note wasn't even syncing with Evernote too.

[Q] Pure Android 4.2 2DIN Car radio front panel buttons not working

Hi everyone,
I need some help with my Android radio.
A couple of days ago i bought an Android 4.2 2DIN car radio: http://www.ebay.com/itm/191227453040
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
The buttons on the front panel at the side of the screen did function properly, but after a factory reset the buttons do not work anymore, and I can't get them to work. The only 3 things that do work are volume, power and cd eject.
How I managed to wreck it:
First thing I did, was getting root.
For that, I followed the instructions at this thread (using Root Master):
http://forum.xda-developers.com/showthread.php?t=2660662
After a succesfull root, I forgot making a back-up
I installed "[root] live logcat": https://play.google.com/store/apps/details?id=eu.chainfire.livelogcat
After installing it, I restarted the device and I saw the logcat boot animation, but after the animation finished I always ended up with a white screen... (http://youtu.be/oPyfJUHzZXQ)
I managed to recover from this by executing a system recovery from recovery mode.
Now I have a functional rooted android device, but somehow the front panel buttons aren't working anymore.
I also tried "CarAudioService" (http://forum.xda-developers.com/showpost.php?p=53678587&postcount=1179) but nothing gets logged.
System information:
MCU version: MTCB-GS-V1.91
Model: S07
Android version: 4.2.2_20140724
Kernel: 3.0.36+
Build: rk30sdk-eng4.2 20140724.11:11:18:04
Could anyone please advice me what to do?
Best regards,
Erik
150
Is there anyone who can help me with this problem?
How you did the system restore ?
Sounds like you used the wrong MCU file.
Warlord711 said:
How you did the system restore ?
Sounds like you used the wrong MCU file.
Click to expand...
Click to collapse
Thanks for your reply Warlold711.
What kind of strange was, is that I could execute a system restore without even putting any rom / image / MCU file on the system. So it restored something that was already on the device when bought... Is there a specific MCU I should try?
Does anyone else has an idea how to recover from this?
3514
Or if someone knows what MCU to use for this radio. I have searched the forums and found this thread but I haven't found out what MCU to use for sure.
* bump * Maybe someone knows the download link of the MCU 'MTCB-GS-V1.91' so I can re-apply it to my device?
After another search I've found the appropriate MCU at the following link:
https://drive.google.com/folderview?id=0BxmzvLRI7-eNeVA2SWkwM1pLZ28&usp=drive_web
I installed "V_2.02_GS_(20140827)" and now the physical buttons are working again!
Hello. I just watched your youtube video. Were you ever able to get live logcat to work correctly? Thanks.
striker1211 said:
Hello. I just watched your youtube video. Were you ever able to get live logcat to work correctly? Thanks.
Click to expand...
Click to collapse
Hi. Unfortunately I haven't. To be honest I didn't even retry after system recovery, scared of wrecking it again I didn't think it was worth trying again.
Playing DVD disc in fullscreen on Android 4.4 Car radio
I just replaced the factory installed radio with an Android 4.4 car radio unit with DVD player and Navigation. Everything seems to work fine, except the video playback from DVD discs. It seems that the video playback is in fullscreen mode. It has 2 black bars at the top and bottom, and the video seems squeezed vertically. Anyone has similar problem? Is there a fix for this? I noticed that in the video player, there's a button to resize the video screen, but there isn't one in the DVD player app. Can I replace the current DVD player with another one? If yes, which one and how? Thanks.

Activate Dolby digital plus

How to activated dolby digital plus in music app only "headphones"
things you need:
1- Need rooted phone all version of g2 mini i think and g flex
2- Root explorer or es file manager
3- Go to /system/etc
4- search for com.lge.music.xml and open like text (backup for security)
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
5- then change the value to "dolby" look like this <audio effect data="dolby" / >
6- save the file and reboot.
7- ENJOY!!
This really works?
ricolhaw said:
This really works?
Click to expand...
Click to collapse
Yes dud
It workkks
yeeeah, i really love it...many thanks...and one thing more:
if you search in this xml few ligns below you find the "activate effect on speaker" or something like that, and it says "false", if you want the native equalizer working on phone speaker change that value to "true" and your speaker in phone will give you the chance to change the equalizer as same way it does in headphones...
doesnt forget to reboot after that!!
-- the phone speaker (if you know basics of sound optimizing) will give you an better sound that never before, optimize it at high level...
chaddr18 - preciate the thing man, and because one thing i found another!
copy2050 said:
yeeeah, i really love it...many thanks...and one thing more:
if you search in this xml few ligns below you find the "activate effect on speaker" or something like that, and it says "false", if you want the native equalizer working on phone speaker change that value to "true" and your speaker in phone will give you the chance to change the equalizer as same way it does in headphones...
doesnt forget to reboot after that!!
-- the phone speaker (if you know basics of sound optimizing) will give you an better sound that never before, optimize it at high level...
chaddr18 - preciate the thing man, and because one thing i found another!
Click to expand...
Click to collapse
your welcome i tried trought the speaker and i dont get a good sound so i dont posted,
also i tried speed and pitch but stop working the app be carefull with that
chaddr18 said:
your welcome i tried trought the speaker and i dont get a good sound so i dont posted,
also i tried speed and pitch but stop working the app be carefull with that
Click to expand...
Click to collapse
i dont try the pitch and speed...only the EQ in speaker and for me improve the voice quality of musics because the native adjustment of speaker is too "cloudy".
For me works fine...
I tried customization but i can't save modified file, edited using ES explorer with root rights granted, can you please tell me why ?
francois64 said:
I tried customization but i can't save modified file, edited using ES explorer with root rights granted, can you please tell me why ?
Click to expand...
Click to collapse
use root explorer, its better, mount the r/w and change the file, save it and dont forget reboot the phone.
francois64 said:
I tried customization but i can't save modified file, edited using ES explorer with root rights granted, can you please tell me why ?
Click to expand...
Click to collapse
you dont touch the back arrow thats why
This mod works great but I decided to add something. Now we can use eqalizera the stock music player without headphones.
okey what we must do it :
backup your orginall com.lge.music
copy download file from the link and copy to your sd card
now open root explorer an go to sd card
copy com.lge.music to System/etc and set permission to rw-r--r--( 0644 )
reboot device
Open stock music plater and you can use now eqaulizer on your speaker.
Work great for me and you can test now.
How i do it ???
Ok i change only this
<!-- Support Audio Effect through Speaker.
Default value is false-->
<eq_through_speaker data="false" />
to this
<!-- Support Audio Effect through Speaker.
Default value is false-->
<eq_through_speaker data="true" />
you can do it on your phone using this app --> https://play.google.com/store/apps/details?id=com.jecelyin.editor&hl=pl
im here new but try do it somthing for our lg 2 mini
my device its LG-G620R V10J and this modded file its from this firmware
http://www46.zippyshare.com/v/XOeITxOA/file.html
for people who have unlocked bootloader and custom recovery here you have flashable zip
http://www38.zippyshare.com/v/cF6YG1nX/file.html
Thanxs, works!!!!
Ambos aportes me funcionaron en lg g2 mini
Support Audio Effect through Speaker
Lg g2 mini have poor speaker but your mod make it better. Thank you very much.
chaddr18 said:
your welcome i tried trought the speaker and i dont get a good sound so i dont posted,
also i tried speed and pitch but stop working the app be carefull with that
Click to expand...
Click to collapse
speed and pitch works, no fc in app but also no effect (tested on 5.0.2 ) we must have new lg music for this, as in g3s for example, where you have this option working and calendar with national holidays info.

[MOD] Xperia SP Sound Mod

{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
Sony Xperia SP Sound MOD
The mods you see here are for the Xperia SP to enhance and improve sound quality and add more immersion. The mods that you want to apply each have their own separate backup scripts that backs up your audio file to your internal storage. You can revert the sound mod changes by flashing the recovery script that is also included below. The following mods in theory should work for ALL roms from Stock Jellybean 4.3 all the way to the latest Android Marshmallow 6.0. Enjoy!
Audio MOD Folder (Contains all mods made by me relating to audio)
Google Drive Folder
Current Mods Available
Dual Mono Speaker - Download
Front Facing Speaker Only - Download
Audio Mod Recovery/Revert - Download​
Special Mentions:
Thanks to @Araib93 and the other members in the Xperia SP Conversations Telegram group for helping to try out the mod and helping me to adjust volume and sound quality settings. Thanks to @adriandc for helping to point out download link errors
Question and Answer
Question and Answer:
What is the Dual Mono Speaker Mod?
The Dual Mono Speaker Mod activates your front and back speakers. This provides more immersion as sound comes from both speakers rather than 1. This mod does not activate your back speaker when in calls to ensure privacy for the user but if the user uses speaker mode while talking to someone, both speakers will turn on as per normal
What is the Front Facing Speaker Mod?
The Front Facing Speaker Mod activates only your front speaker and deactivates your back speaker. This provides front immersion as sound comes from only the front speaker. During calls the front speaker will be the only speaker turned on but if the user turns on the speaker mode in-call, the back speaker does not turn on and there is no change in which speaker is utilized. This mod sets the back speaker offline forever until the user reverts the mod
Where are backups stored?
Backups (Less than 1MB) are stored in /storage/emulated/0/soundmod_backup
What does the recovery script do?
The recovery script simply removes the audio mod file and places the backed up audio file to the proper locations
I don't like this mod and i want to try out another. How do I change?
Firstly use the recovery script to place the original and unmodified sound files back to the system partition. Secondly, flash the other mod you wished to try out and enjoy.
Click to expand...
Click to collapse
Tried, not working on dirty unicorns 4.3.1, i get assert failed: getprop ro.product.device error
Spasik said:
Tried, not working on dirty unicorns 4.3.1, i get assert failed: getprop ro.product.device error
Click to expand...
Click to collapse
Edit:
I have fixed the errors. Re-download the package and flash
Furrydaus said:
Edit:
I have fixed the errors. Re-download the package and flash
Click to expand...
Click to collapse
thanks but it didnt help i just modded the updater script and it worked
Ill give it a try
never notice things on this side of the forum, gonna try it now
edit: confirmed, works on carbon 1126 build, awesome effect
Good mod. The dual mono is working good
awesome effect
good job man X
Dual mono affects the audio recording.
I cannot use my camera for video recording and audio recording too. Im using stock 4.3
I am new...... I can't understand this.... Plzz help me boss
Please fix the links!
Link's are broken
The links to download are not working :crying:
Links are broken...if anyone had downloaded the "front facing speaker only" mod, can you upload it here? I need it desperately :crying:
 @Furrydaus If you still have files can you please re-upload them?
@furrydau pls reload the files. Thank you!
Furry, any chance for new download links?
Thanks .
@Furrydaus Hello, is it posible to have back download links for this MOD? I really would like to try it. Thank you!

Categories

Resources