Possible to get it working on android?
rohitghali opened this issue · 3 comments
I already tried pointing the script in my config file as like this.
Android mpv-android:
script=/storage/emulated/0//sub-skip.lua
Doesn't work. I changed the load config to true. Didn't work. How do I get it to work?
Same here, I used a video that works on my PC just to be sure that wasn't an external factor.
Then at mpv.conf I also added
script-opts=sub_pause-unpause_time=3.5
script-opts=sub_pause-default_end=yes
but I got the same results after pressing "n"
@Ben-Kerman is it possible to use the script on android?
I don't see any reason why it shouldn't work. I managed to get sub-skip running on mpv-android before with just this:
script=/sdcard/mpv-scripts/sub-skip.lua
script-opts=sub_skip-default_state=yes
Make sure the path to the script is correct, I guess. Maybe try getting a test script that just displays an OSD message (single line file with mp.osd_message("<msg text>")
) running first
I don't see any reason why it shouldn't work. I managed to get sub-skip running on mpv-android before with just this:
script=/sdcard/mpv-scripts/sub-skip.lua script-opts=sub_skip-default_state=yes
Make sure the path to the script is correct, I guess. Maybe try getting a test script that just displays an OSD message (single line file with
mp.osd_message("<msg text>")
) running first
Thanks for the reply, now I realized that I didn't specify that I was having problems with sub-pause.lua
Yesterday I was a little tired and I didn't realized OP was talking about the other script, sorry
Edit: tried a test script to check route [result I misspelled the folder name] after that I just erased "script-opts=sub_pause-default_end=yes" and now it works, thanks for the quick reply.