Univerter/static/index.html

59 lines
2.4 KiB
HTML
Raw Normal View History

2023-05-05 11:15:22 -05:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/style.css">
2023-05-05 11:15:22 -05:00
<title>Youtube Downloader</title>
</head>
<body>
2023-10-20 18:03:54 -05:00
<h1>Youtube Downloader <p>v2.0</p>
2023-05-08 12:52:41 -05:00
<hr>
</h1>
2023-05-10 12:36:26 -05:00
2023-10-20 18:03:54 -05:00
<form action="/getLink" method="get" target="_blank">
2023-05-08 12:52:41 -05:00
<p style="margin-bottom: 1px;">Video URL:</p>
2023-05-10 12:36:26 -05:00
<input required id="url" placeholder="Enter url" name="url">
<p>Quality:</p>
<select required id="quality" name="quality">
<option value="highest">Highest</option>
<option value="lowest">Lowest</option>
</select>
<p>Filename:</p>
<input required id="filename" placeholder="Enter filename" name="filename"><br>
2023-05-10 12:36:26 -05:00
<p>Format:</p>
<select required id="format" name="format">
<option disabled>Video Options</option>
2023-10-18 20:04:42 -05:00
<option value="mp4">.mp4</option>
<option value="webm">.webm</option>
2023-05-10 12:36:26 -05:00
<option value="flv">.flv</option>
<option value="avi">.avi</option>
<option value="mpeg">.mpeg</option>
<option value="mov">.mov</option>
<option disabled>Audio Options</option>
2023-05-10 12:36:26 -05:00
<option value="mp3">.mp3</option>
<option value="ogg">.ogg</option>
2023-08-28 08:33:16 -05:00
<option value="wav">.wav</option>
2023-05-10 12:36:26 -05:00
</select>
2023-10-23 23:31:23 -05:00
<p>Redirect:</p>
<select required id="redirect" name="redirect">
<option value="false">Don't redirect</option>
<option value="redirectjs">Redirect (JS) *1</option>
<option value="redirect">Redirect (disable progress) *2</option>
</select>
<br>
2023-05-10 12:36:26 -05:00
<input type="submit" placeholder="test">
2023-05-05 11:15:22 -05:00
</form>
2023-05-10 12:36:26 -05:00
<hr>
2023-10-23 23:31:23 -05:00
<p>*1: The "Redirect JS" Option is the same as the "Don't redirect" option, except it sends javascript to the browser letting you redirect. BOTH OPTIONS WORK FINE WITHOUT JAVASCRIPT!</p>
<p>*2: The "Redirect (disable progress)" option doesn't use any javascript and automatically redirects to the download, but you are not given download progress updates!</p>
<hr>
2023-10-18 20:04:42 -05:00
<p><a href="https://ko-fi.com/bingus_violet">Please consider donating</a> or host the website yourself! Anything helps! (Check <a href="https://github.com/Violets-puragtory/NoJS-YTConverter">github</a> for more info)</p><br>
2023-05-05 11:15:22 -05:00
</body>
</html>