Univerter/static/index.html

67 lines
2.7 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">
2023-11-22 22:52:44 -06:00
<link rel="stylesheet" href="./style.css">
2023-05-05 11:15:22 -05:00
2024-02-01 13:20:47 -06:00
<meta content="Univerter" property="og:title" />
<meta content="Univerter is a web video downloader & converter for Youtube, TikTok, Twitter, and more." property="og:description" />
2024-02-23 12:57:55 -06:00
<meta content="https://univerter.dev/Images/Univerter%20Logo.png" property="og:image" />
2024-02-01 13:20:47 -06:00
<meta content="#a200ff" data-react-helmet="true" name="theme-color" />
2023-11-28 21:21:17 -06:00
<title>Univerter</title>
2023-05-05 11:15:22 -05:00
</head>
<body>
2024-02-23 12:57:55 -06:00
<h1>Univerter<hr></h1>
2023-11-22 22:52:44 -06:00
2024-01-18 18:09:13 -06:00
<form action="/download" method="get">
<p style="margin-bottom: 1px;">Video URL:</p>
<input required type="url" id="url" placeholder="Enter url" name="url" style="width: 80vw; max-width: 550px">
<p>Quality:</p>
2024-01-17 20:39:08 -06:00
<select required id="quality" name="quality">
<option value="144">144p</option>
<option value="240">240p</option>
<option value="360">360p</option>
<option value="480">480p</option>
<option value="720" selected>720p</option>
<option value="1080">1080p</option>
<option value="1440">1440p</option>
<option value="2160">2160p (4k)</option>
</select>
<p>Format:</p>
<select required id="format" name="format">
<option disabled>Video Formats</option>
<option value="mp4">.mp4</option>
2024-01-17 19:48:08 -06:00
<option value="mkv">.mkv</option>
<option disabled>Audio Formats</option>
<option value="mp3" selected>.mp3</option>
2024-01-17 20:39:08 -06:00
<option value="wav">.wav</option>
2024-02-01 18:54:38 -06:00
<option value="opus">.ogx</option>
</select>
2024-01-17 20:39:08 -06:00
<!-- <br> -->
<!-- <input style="display: inline-block" type="checkbox" id="adv"> -->
<!-- <p style="display: inline-block" for="adv">Enable Advanced options? (Beta)</p> -->
2023-11-20 14:39:04 -06:00
2023-12-12 19:56:58 -06:00
<br>
<input type="submit">
2023-05-05 11:15:22 -05:00
</form>
<br>
2024-02-23 13:06:04 -06:00
<p>Univerter uses yt-dlp as its backend, and supports a wide variety of platforms. yt-dlp's list can be found <a target="_blank" href="https://github.com/yt-dlp/yt-dlp/blob/master/supportedsites.md">here</a>, but be aware many of them wont work.</p>
2024-01-17 20:03:21 -06:00
<p><a target="_blank" href="https://ko-fi.com/bingus_violet">Please consider donating</a> or host the website yourself! Anything
2023-11-20 14:39:04 -06:00
helps! (Check <a href="https://codeberg.org/Bingus_Violet/Univerter">Codeberg</a> for more info)</p>
2024-01-26 12:33:19 -06:00
<p>
Powered by <a target="_blank" href="https://github.com/yt-dlp/yt-dlp/">yt-dlp</a>
<br>
2024-01-26 12:44:27 -06:00
Inspired by <a href="https://cobalt.tools">Cobalt</a><br>
2024-01-26 12:33:19 -06:00
</p>
2023-05-05 11:15:22 -05:00
</body>
</html>