-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Making it work on Android #99
Comments
@TianZerL Hi, I just installed mpv-android,but I have some problem in the installation of Anime4k glsl. What is the installation path of glsl file in mpv-android? Or install it to any location in the memory and call the path directly?Could you please help me ?I can pay for this. Thank you! |
@yushengnan1 |
@yushengnan1 Hi! so did you managed to get it work? |
I can't figure out where to add the glsl files on android. or how to set up the mpv.conf to find them. any example would be helpful. |
@GizmoTheGreen mpv.conf can be edited with a file manager or by going in mpv settings -> advanced -> edit mpv.conf or edit input.conf |
Hi. Trying to use this on My nvidia shield Pro 2019. Could someone who has successfully done it on android just sent over the configuration file they used then I can edit, driving me insane trying to get it working. |
Can someone help me with my Android setup as well? I edited the |
Hi, I just found that the Anime4K glsl shaders can't run in mpv-android, it will be a blue screen.
After some testing, I found that it should be because of the max and min opengl built-in functions.
In the mpv-android, code like
max(a, 0) //a is a vec4
is unable to compile successfully, it should bemax(a, vec4(0))
ormax(a, vec4(0.0f))
. It works for me.Although the shader works, it doesn't feel as good as PC.
Any ideas?
The text was updated successfully, but these errors were encountered: