diff options
author | Mango0x45 <thomasvoss@live.com> | 2021-02-03 18:01:11 +0100 |
---|---|---|
committer | Mango0x45 <thomasvoss@live.com> | 2021-02-03 18:01:11 +0100 |
commit | 83285d8fce40a6df4a4d35ee54409b88a1848340 (patch) | |
tree | 837158edf13785eb5f0a2e1ae15a0df3a88fad60 /index.html | |
parent | ee767fc3b2c7d00c50282317b6200fcbc1b92652 (diff) |
Clean up code
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 21 |
1 files changed, 8 insertions, 13 deletions
@@ -12,18 +12,13 @@ <body class="stackedit"> <div class="stackedit__html"> - <h1 id="youtube-interval-timer">YouTube Interval Timer</h1> - <h3 id="about">About</h3> - <p>Takes start and stop points of a YouTube video, down to the frame, and gives the time between them in the format - <code>1h 23m 45s 678ms</code>. Source code is <a - href="https://github.com/slashinfty/yt-frame-timer">available</a>. - </p> + <h1 id="youtube-interval-timer">Speedrun Retimer without Ads</h1> <h3 id="video-framerate">Video Framerate</h3> <p>Right click the YouTube video and select “Stats for nerds.” The third line is “Current / Optimal Res” - find the two numbers after the @ and enter them for framerate.</p> <p> <label for="framerate">Framerate: </label> - <input type="text" id="framerate" size="3" value="60" onchange='validateFPS(event)' /> + <input type="text" id="framerate" size="3" value="60" onchange='check_fps(event)' /> </p> <h3 id="video-endpoints">Video Endpoints</h3> <p> @@ -32,20 +27,20 @@ </p> <p> <label for="startobj">Starting frame: </label> - <input type="text" id="startobj" style='width:100%' onchange='parseForTime(event)' /> + <input type="text" id="startobj" style='width:100%' onchange='parse_time(event)' /> </p> <p> <label for="endobj">Ending frame: </label> - <input type="text" id="endobj" style='width:100%' onchange='parseForTime(event)' /> + <input type="text" id="endobj" style='width:100%' onchange='parse_time(event)' /> </p> <h3 id="video-time">Video Time</h3> - <button id="computeButton" onclick="compute()">Compute time</button> <input type="text" id="time" readonly + <button id="compute_button" onclick="compute()">Compute time</button> <input type="text" id="time" readonly size="20" /> <p> - <textarea id="modMessage" cols="40" rows="5" disabled></textarea> + <textarea id="mod_message" cols="40" rows="5" disabled></textarea> </p> - <button id="modMessageButton" onclick="copyModMessage()" disabled>Copy Mod Message to Clipboard</button> + <button id="mod_message_button" onclick="copy_mod_message()" disabled>Copy Mod Message to Clipboard</button> </div> </body> -</html> +</html>
\ No newline at end of file |