Skip to content

Instantly share code, notes, and snippets.

@goetzc
Created August 12, 2016 05:23
Show Gist options
  • Select an option

  • Save goetzc/8bdd6fca271a9910f305a9f6323f2816 to your computer and use it in GitHub Desktop.

Select an option

Save goetzc/8bdd6fca271a9910f305a9f6323f2816 to your computer and use it in GitHub Desktop.
mpv script to show the progress bar on pause.
-- mpv script to show the progress bar on pause. --
function on_pause(name, value)
if value == true then
mp.command("show-progress")
end
end
mp.observe_property("pause", "bool", on_pause)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment