Is it just me, or does observe_property work kinda shitty recently? I'm on last git build, but last stable has the same problem. I'll try to capture what I meant on video.
Lincoln Jones
I tried profile=gpu-hq on plex media player and it doesn't work. log show invalid only profile=opengl-hq works properly dunno why is that so. maybe PMP use old version of MPV?
Gabriel Perez
Is there a script or some other way to make mpv display synchronized lyrics embedded in the metadata of music files as subtitles?
Zachary Roberts
opengl-hq was deprecated some versions ago, so it indeed sounds like you're using an old version.
Mason Martin
Is there a script to make the text font smaller in MPV for android?
Logan Davis
Here's the video, notice how there's less than 10 seconds of video left, and even after 10 seconds on_pause is not being triggered at all. It triggers instantly when I hover my mouse cursor over mpv window for some reason. I've been trying to do the same experiment with much longer time periods, it won't trigger even after an hour (unless I'll hover mouse over, then it triggers instantly). Any ideas what could cause it?
Simplified script code below. function on_pause(name, value) mp.command('script-message osc-visibility ' .. (value and 'always' or 'auto') .. 'no-osd') end
mp.observe_property('pause', 'bool', on_pause)
>File too large (file: 3.09 MB, max: 3 MB). HIROOOOOOOOO
>or 'auto') .. 'no-osd') Did you mean to do or 'auto') .. ' no-osd') (note the space)?
Charles Fisher
Yeah, sorry for that. I've written this code by hand, in QR window. The actual script is slightly different. It used to work a few months ago, but currently it behaves the way you can see on the video.
Here's the whole thing in case you're interested, but what I posted before should be way easier to debug. pastebin.com/tE352ihu
Jeremiah Reed
I've messed with the C API and noticed that properties can be kind of slow sometimes. I never did try to really debug though since it works good enough for my purposes.