Arieleg / mpv-copyTime

Copy the current time of the video to clipboard.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

mpv-copyTime does not work properly when seconds counter is between 30 and 60

wireless2web opened this issue · comments

When the second counter in video is between 30 and 60, the "copied to clipboard" time value displayed on the screen is incorrectly incremented to the next minute. The problem is demonstrated in this video: https://youtu.be/TDMy5ifh1d8

In the video, I repetitively press ctrl-C. As you can see, the "copied to clipboard" value is correct up to 29 seconds. After 29 seconds the "copied to clipboard" is one minute greater than it should be.

It looks like the divmod function needs a math.floor() around the "a/b".

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

Thanks for the useful code.

When the second counter in video is between 30 and 60, the "copied to clipboard" time value displayed on the screen is incorrectly incremented to the next minute. The problem is demonstrated in this video: https://youtu.be/TDMy5ifh1d8

In the video, I repetitively press ctrl-C. As you can see, the "copied to clipboard" value is correct up to 29 seconds. After 29 seconds the "copied to clipboard" is one minute greater than it should be.

It looks like the divmod function needs a math.floor() around the "a/b".

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

Thanks for the useful code.

This fix the issue. Thank you!