Univerter/static/index.html
2024-09-15 14:49:35 -05:00

87 lines
4.4 KiB
HTML

<!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">
<script
src="https://code.jquery.com/jquery-3.7.1.slim.min.js"
integrity="sha256-kmHvs0B+OpCW5GVHUNjv9rOmY0IvSIRcf7zGUDTDQM8="
crossorigin="anonymous"></script>
<script src=" https://cdn.jsdelivr.net/npm/js-cookie@3.0.5/dist/js.cookie.min.js "></script>
<script src="./js/main.js"></script>
<meta content="Univerter" property="og:title" />
<meta content="Univerter is a web video downloader & converter for Youtube, TikTok, Twitter, and more." property="og:description" />
<meta content="https://univerter.dev/Images/Univerter%20Logo.png" property="og:image" />
<meta content="#a200ff" data-react-helmet="true" name="theme-color" />
<title>Univerter</title>
</head>
<body>
<h1>Univerter<hr></h1>
<form action="/download" method="get" target="_blank">
<p style="margin-bottom: 1px;">Video URL:</p>
<input required type="url" id="url" placeholder="Enter URL" name="url">
<div class="grid-container">
<div class="grid-child">
<p>Quality:</p>
<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 (2k)</option>
<option value="2160">2160p (4k)</option>
</select>
</div>
<div class="grid-child">
<p>Format:</p>
<select required id="format" name="format">
<option disabled>Video Formats</option>
<option value="mp4">.mp4</option>
<option disabled>Audio Formats</option>
<option value="mp3" selected>.mp3</option>
</select>
</div>
</div>
<div id="audioOnly">
<input style="display: inline-block" type="checkbox" id="trim" name="trimAudio">
<p style="display: inline-block" for="trim">Trim Silence (mp3)</p>
</div>
<div id="videoAndAudio">
<!-- <input style="display: inline-block" type="checkbox" id="trim" checked>
<p style="display: inline-block" for="trim">Trim BALLS (mp4 only)</p> -->
</div>
<input type="submit">
</form>
<!-- <br> -->
<p>Inspired by <a href="https://cobalt.tools">Cobalt</a></p>
<p>Developed by <a href="https://violets-purgatory.dev">Violet</a></p>
<br>
<h2>Most recent change</h2>
<p>Should now only downloading formats with the avc1 codec. This means that most software (namely premiere pro) should be compatible with ALL videos. Please let me know if for some reason it fails to downlaod now!!!
<br><br>
I first attempted to fix this issue 8 months ago. I have been trying to fix this for 8 months. It was fixed by appending something to an if statement. <br>I hate my life.</p>
<h2>Status of the beta</h2>
<p>I am hoping to have more people test the beta before I release it! Although it is faster in all regards, I'm unsure of stability and reliability. When the last Univerter rewrite released it was uh... Less than desirable to alot of people. <br>
Now, Univerter has gone from 2 users to like almost 5! Which is really bad for me! Because I cant release garbage without consequence anymore :(</p>
<h2>Why did you mess up the UI?! What is wrong with you?!?!</h2>
<p>I KNOW I DID!!! ITS A BETA!!! GRRRAAAAAA!!! Seriously though, all critique is requested. If you have something, contact me through <a href="https://violets-purgatory.dev">my website</a> or email at violet@violets-purgatory.dev (I probably wont respond to emails)<br><br>
Teehee I probably wont "fix" the UI though!!</p>
</body>
</html>