From b1165ce3a22194d1f929c9af7ea65d19460fd941 Mon Sep 17 00:00:00 2001 From: Ricardo Constantino Date: Sat, 8 Jul 2017 14:42:04 +0100 Subject: ytdl_hook: add times for ytdl and hook running on debug-level Not really important, but still interesting to know. --- player/lua/ytdl_hook.lua | 3 +++ 1 file changed, 3 insertions(+) (limited to 'player') diff --git a/player/lua/ytdl_hook.lua b/player/lua/ytdl_hook.lua index c7049f1b85..11a252af00 100644 --- a/player/lua/ytdl_hook.lua +++ b/player/lua/ytdl_hook.lua @@ -243,6 +243,7 @@ end mp.add_hook("on_load", 10, function () local url = mp.get_property("stream-open-filename") + local start_time = os.clock() if (url:find("http://") == 1) or (url:find("https://") == 1) or (url:find("ytdl://") == 1) then @@ -319,6 +320,7 @@ mp.add_hook("on_load", 10, function () end msg.verbose("youtube-dl succeeded!") + msg.debug('ytdl parsing took '..os.clock()-start_time..' seconds') -- what did we get? if not (json["direct"] == nil) and (json["direct"] == true) then @@ -424,6 +426,7 @@ mp.add_hook("on_load", 10, function () add_single_video(json) end end + msg.debug('script running time: '..os.clock()-start_time..' seconds') end) -- cgit v1.2.3