Try the fix.zip for V4A first if no luck try the repacked V4A
Try the fix.zip for V4A first if no luck try the repacked V4A
Hi,
Okay here's your solution. If you have twrp just use file manager andmove the folder from your sd card to whatever.Hi,
Fixed.
I downloaded 'Solid Explorer' from the Google Playstore. I don't really get it. I don't have access with 'Root Explorer', but with 'Solid Explorer' I can.
Tnx 4 reply
Grtz
Finally it works..,thank you very much
do you get the same hissing sound when you turn Viper off, and keep the volume levels the same?How to fix hissing sound when on speaker? I only hear it when volume is very low.
Bluetooth output seems fine.
I'm using this on my Poco F3 with CrDROID 8.7
Same error for me. Downloaded the file from this (https://forum.xda-developers.com/t/...ew-features-7-0-support.2191223/post-87109719) post and installed it with Magisk.Just updated my Pixel6Pro, and installed Magisk, all the usual stuff we do when we update, but I can't get V4A to work now.
Keep getting this screen, it downloads, then when opened, says the same, and repeats over and over.
Any idea how to fix?
TIA
Tried. Does this, then reboots, every time.Same error for me. Downloaded the file from this (https://forum.xda-developers.com/t/...ew-features-7-0-support.2191223/post-87109719) post and installed it with Magisk.
Device: OnePlus 8 Pro, OxygenOS IN2023_11_C.33 (Android 12)
Magisk v25.2
I've been messing with this for a while. I figured out why it won't work, but I don't have a solution yet... maybe someone on this thread can help.Just updated my Pixel6Pro, and installed Magisk, all the usual stuff we do when we update, but I can't get V4A to work now.
Keep getting this screen, it downloads, then when opened, says the same, and repeats over and over.
Any idea how to fix?
TIA
sed -i "/<libraries>/ a\ <library name=\"v4a_fx\" path=\"..\/..\/lib\/soundfx\/libv4a_fx.so\"\/>" $AUDIO_EFFECTS_FILE
wouldn't this be helpful?I've been messing with this for a while. I figured out why it won't work, but I don't have a solution yet... maybe someone on this thread can help.
Every version of Android thus far has loaded audio effects from /vendor/lib/soundfx. Android 13, however, apparently loads the audio effects libs from /vendor/lib64/soundfx. While audio_effects.xml may look identical, the default path is lib64 instead of lib.
V4A only provides /vendor/lib/soundfx/libv4a_fx.so, so when EffectsFactoryConfigLoader starts parsing audio_effects.xml, it can't find libv4a_fx.so because it's looking for it in /vendor/lib64/soundfx (logcat gives...)
(
09-24 01:32:51.487 2648 2648 E EffectsFactoryConfigLoader: Could not find library in effect directories: libv4a_fx.so
)
You can *find* libv4a_fx.so by changing the patch in the module's install.sh to
sed -i "/<libraries>/ a\ <library name=\"v4a_fx\" path=\"..\/..\/lib\/soundfx\/libv4a_fx.so\"\/>" $AUDIO_EFFECTS_FILE
but this only works to find it, not open it (logcat gives....)
(
09-25 02:53:20.184 841 875 E EffectsFactoryConfigLoader: Could not dlopen library /vendor/lib64/soundfx/../../lib/soundfx/libv4a_fx.so: dlopen failed: "/vendor/lib/soundfx/libv4a_fx.so" is 32-bit instead of 64-bit
)
The change to looking for audio effects libs in /vendor/lib64/soundfx matters because lib64 is full of 64-bit *.so files, whereas lib is full of 32-bit, and apparently the audio effects are being run as 64-bit binaries now.
So where I've gotten is how to find and try to open libv4a_fx.so. Where I'm stuck is how to actually open it.... I feel like there has to be a way to run just that one audio effect as 32-bit, but I have no idea how to do it yet
Try solid explorer. Only one I could get to let me access system partitionHi,
I want to put IRS files in /storage/emulated/0/Android/data/com.pittvandewitt.viperfx/files/Kernel folder, but I have no access. I have rooted phone, with custom ROM and I am on android 12.
Can anybody help me please?
Tnx
Does this work with the pixel 7 pro and its ARM64 architecture?Here's a newer improved installer for Magisk that fixes most of the current problems. Just install it with Magisk and reboot. The current update didn't work for me though, I hope future updates will fix that but by all means try it:
![]()
Releases · programminghoch10/ViPER4AndroidRepackaged
A refined ViPER4Android installer. Contribute to programminghoch10/ViPER4AndroidRepackaged development by creating an account on GitHub.github.com
v4a_fx {
path /system/lib/soundfx/libv4a_fx_xxx.so
}
#NECESSARY FOR XHIFI
v4a_xhifi {
path /system/lib/soundfx/libv4a_xhifi_xxx.so
}
v4a_standard_fx {
library v4a_fx
uuid 41d3c987-e6cf-11e3-a88a-11aba5d5c51b
}
#NECESSARY FOR XHIFI
v4a_standard_xhifi {
library v4a_xhifi
uuid d92c3a90-3e26-11e2-a25f-0800200c9a66
}