Created
August 12, 2016 05:23
-
-
Save goetzc/8bdd6fca271a9910f305a9f6323f2816 to your computer and use it in GitHub Desktop.
mpv script to show the progress bar on pause.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -- 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