| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <!doctype html>
- <html lang="en">
- <head>
- <meta charset="utf-8">
- <title>vget: Vimeo video ripper</title>
- <meta name="description" content="vget">
- <meta name="author" content="6a">
- <link rel="apple-touch-icon" sizes="180x180" href="./apple-touch-icon.png">
- <link rel="icon" type="image/png" sizes="32x32" href="./favicon-32x32.png">
- <link rel="icon" type="image/png" sizes="16x16" href="./favicon-16x16.png">
- <link rel="manifest" href="./site.webmanifest">
- <link rel="mask-icon" href="./safari-pinned-tab.svg" color="#5bbad5">
- <meta name="msapplication-TileColor" content="#2b5797">
- <meta name="theme-color" content="#ffffff">
- <link rel="stylesheet" href="style.css">
- </head>
- <body>
- <div class="app">
- <p class="noselect">enter the full video path</p>
- <h4>example: https://vimeo.com/channels/staffpicks/212731897</h4>
- <div id="input-wrapper" class="input-section">
- <input id="input-field" type="text" class="" spellcheck="false">
- <select id="selector">
- <option value="1920">1080P</option>
- <option value="1280">720P</option>
- <option value="960">540P</option>
- <option value="640">360P</option>
- </select>
- <button id="button" disabled><img class="go-button" src="./img/play-button.svg" alt=""></button>
- </div>
- <div class="link-box">
- <a target="_blank" href="" class="inactive" id="result-url-anchor">
- <h5 id="result-url-txt">www</h5>
- </a>
- <a target="_blank" href="" class="inactive" id="result-poster-anchor">
- <h5 id="result-poster-txt">www</h5>
- </a>
- </div>
- <h4 id="tip" class="inactive">tip: click on the links to view them, or right click -> save as to download.</h4>
- </div>
- <script src="code.js"></script>
- </body>
- </html>
|