This file contains 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
-- requires subliminal, version 1.0 or newer | |
-- default keybinding: b | |
local utils = require 'mp.utils' | |
--sleep function, so that subs aren't downloaded the instant a file is loaded | |
--taken from:http://lua-users.org/wiki/SleepFunction | |
function sleep(s) | |
local ntime = os.time() + s | |
repeat until os.time() > ntime | |
end |