-
Notifications
You must be signed in to change notification settings - Fork 2.9k
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
display osc instead of progress bar on seek #7891
Comments
one of the solutions. |
I don't see how that's a solution. With the I've searched some more, and I think this might be a duplicate of #2891. |
Check out python-mpv issue #124. The lua script there is a workaround until this gets solved in mpv. |
is there any work being done on this issue? |
Also it's possible to disable pop-up seek bar. I'm using that plus what Jaseg suggested. |
I too am missing this |
FWIW I just learned to love uosc, which makes this easy. |
To save a few minutes of search for those who want to do the same thing, this is the setting you should put into
Just to be clear, this just disables OSD on seek, there is no option to show OSC on seek yet. Edit Using function show_osc()
mp.commandv("script-message", "osc-show")
end
mp.register_event("seek", show_osc)
mp.observe_property("pause", "bool", show_osc) This also shows OSC when toggling pause, comment out or remove if it's not desired. |
Would love to show OSC on seek. |
local timer = mp.add_timeout(1, function ()
mp.command('script-message osc-visibility auto ""')
end, true)
mp.register_event('seek', function ()
mp.command('script-message osc-visibility always ""')
timer:kill()
timer:resume()
end) |
Fixed by: #14358 |
Whenever I seek the video, progress bar gets displayed. Any way to display the regular OSC instead (one that appears when I move mouse)?
The text was updated successfully, but these errors were encountered: