diff options
author | Matt Braddock <matt.braddock@gmail.com> | 2019-01-01 13:33:51 -0500 |
---|---|---|
committer | Matt Braddock <matt.braddock@gmail.com> | 2019-01-01 13:33:51 -0500 |
commit | 251625624088ab6af6db03f29334ef845dbc3359 (patch) | |
tree | 396cef675d57886af9d5127525d819514e4e7b77 | |
parent | 6ea7063ac4a1d417711bc1b36574419542b6688d (diff) |
fixed frame timing from debug info
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | main.js | 6 |
2 files changed, 5 insertions, 3 deletions
@@ -1,2 +1,2 @@ # yt-frame-timer -A JavaScript-based program to determine the time between start and end points of a YouTube video down to the frame. Based on [https://docs.google.com/spreadsheets/d/1c3eiw1_00Tx1snAdU_kvncuA8C8xu5-q3tSOPRuqhzI/](https://docs.google.com/spreadsheets/d/1c3eiw1_00Tx1snAdU_kvncuA8C8xu5-q3tSOPRuqhzI/).
\ No newline at end of file +A JavaScript-based program to determine the time between start and end points of a YouTube video down to the frame. Based on [https://docs.google.com/spreadsheets/d/1c3eiw1_00Tx1snAdU_kvncuA8C8xu5-q3tSOPRuqhzI/](https://docs.google.com/spreadsheets/d/1c3eiw1_00Tx1snAdU_kvncuA8C8xu5-q3tSOPRuqhzI/) by Slush Puppy (big thanks to them for their work).
\ No newline at end of file @@ -8,8 +8,10 @@ function compute() { let seconds = 0; let milliseconds = 0; let frameRate = parseInt(framerate); - let diff = (endObj.lct - startObj.lct) * frameRate; - let frames = diff; + let frameFromObj = (time, fps) => Math.floor(time * fps) / fps; //round to the nearest frame + let startFrame = frameFromObj(startObj.lct, frameRate); + let endFrame = frameFromObj(endObj.lct, frameRate); + let frames = (endFrame - startFrame) * frameRate; if (frames >= frameRate) { seconds = Math.floor(frames / frameRate); frames = frames % frameRate; |