Arieleg / mpv-copyTime

Copy the current time of the video to clipboard.
GNU General Public License v3.0
73 stars 23 forks source link

fix for videos > 30 minutes #9

Open hexa0 opened 2 years ago

itsotter commented 2 years ago

I had the same problem. Fixed by changing the divmod function to this:

local function divmod(a, b) return math.floor(a / b), a % b end