Conversion is back!
This commit is contained in:
parent
63dd7b3bc7
commit
c23fc35bc0
5 changed files with 367 additions and 36 deletions
66
static/converter/index.html
Normal file
66
static/converter/index.html
Normal file
|
@ -0,0 +1,66 @@
|
|||
<!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">
|
||||
|
||||
<title>Univerter</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<h1>Univerter <p>v3.1.1</p>
|
||||
<p style="color: lightgray">And still javascript free...</p>
|
||||
<hr>
|
||||
</h1>
|
||||
|
||||
<p><a href="/">Downloader</a></p>
|
||||
|
||||
<form action="/convert" method="post" target="_blank" enctype="multipart/form-data">
|
||||
|
||||
<div class="setting">
|
||||
<input name="files" type="file" accept="video/*, audio/*">
|
||||
</div>
|
||||
|
||||
<div class="setting">
|
||||
<p>Quality:</p>
|
||||
<select required id="preset" name="preset">
|
||||
<option value="ultrafast">Ultra Fast (Lowest)</option>
|
||||
<option value="superfast">Super Fast</option>
|
||||
<option value="veryfast" selected>Very Fast (Reccomended)</option>
|
||||
<option value="fast">Fast</option>
|
||||
<option value="medium">Medium</option>
|
||||
<option value="slow">Slow</option>
|
||||
<option value="slower">Slower</option>
|
||||
<option value="veryslow">Very Slow (Highest)</option>
|
||||
</select>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="setting">
|
||||
<p>Format:</p>
|
||||
<select required id="format" name="format">
|
||||
<option disabled>Video Formats</option>
|
||||
<option value="mp4">.mp4</option>
|
||||
<option value="matroska">.mkv</option>
|
||||
<option value="flv">.flv</option>
|
||||
<option value="avi">.avi</option>
|
||||
<option value="mov">.mov</option>
|
||||
<option disabled>Audio Formats</option>
|
||||
<option value="mp3">.mp3</option>
|
||||
</select>
|
||||
</div>
|
||||
<input type="submit">
|
||||
</form>
|
||||
<br>
|
||||
<p>Notes: </p>
|
||||
<p>Faster presets convert faster but have less quality, vice versa.</p>
|
||||
<hr>
|
||||
<p><a href="https://ko-fi.com/bingus_violet">Please consider donating</a> or host the website yourself! Anything
|
||||
helps! (Check <a href="https://codeberg.org/Bingus_Violet/Univerter">Codeberg</a> for more info)</p>
|
||||
</body>
|
||||
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue