In mpv, how to disable the playlist OSD when starting the next video in a playlist

I've disabled osd:

osd-level=0

But when a new video in a playlist starts, in the upper left corner there appears the entire playlist. Using the option osd-scale, I can shrink it down, but how can I prevent it from automatically appearing at all?

It's okay to appear when clicking on the osc to see how the audio track is called, for example. But I'd like to disable the automatic appearance of the playlist text when the next video starts.

1 Answer

There's nothing in the mpv documentation however if you look at mpv's osc.lua script there is the playlist_osd variable.

You need to create %APPDATA%\mpv\script-opts\osc.conf and in it put:

playlist_osd=no
  • Windows: C:\Users\USER\AppData\Roaming\mpv\script-opts\osc.conf
  • Linux: ~/.config/mpv/script-opts/osc.conf
1

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like