mirror of
https://github.com/mpv-player/mpv
synced 2025-03-30 15:29:56 +00:00
TOOLS/stats-conv: allow passing regex via command line
This commit is contained in:
parent
8d66bd76e2
commit
5a52fe47a0
@ -5,7 +5,10 @@ import re
|
||||
|
||||
filename = sys.argv[1]
|
||||
|
||||
event_regex = re.compile(".*")
|
||||
events = ".*"
|
||||
if len(sys.argv) > 2:
|
||||
events = sys.argv[2]
|
||||
event_regex = re.compile(events)
|
||||
|
||||
"""
|
||||
This script is meant to display stats written by mpv --dump-stats=filename.
|
||||
|
Loading…
Reference in New Issue
Block a user