Converter update!
This commit is contained in:
parent
0980a2aa8b
commit
a8fa9b9783
7 changed files with 257 additions and 18 deletions
57
static/convert/index.html
Normal file
57
static/convert/index.html
Normal file
|
@ -0,0 +1,57 @@
|
|||
<!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 - Video Converter</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<h1>Univerter - Video Converter <p>v1.0</p>
|
||||
<hr>
|
||||
</h1>
|
||||
|
||||
<div class="row container-fluid">
|
||||
<div class="col-sm-6">
|
||||
<h2><a href="../">YT Downloader</a></h2>
|
||||
</div>
|
||||
<div class="col-sm-6">
|
||||
<h2><a>Video Converter</a></h2>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h1><hr></h1>
|
||||
|
||||
<form action="/converter" method="post" target="_blank" enctype="multipart/form-data">
|
||||
<div class="setting">
|
||||
<p>Video:</p>
|
||||
<input required id="video" name="video" type="file">
|
||||
</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>This video converter is experimental. Please report issues on <a href="https://codeberg.org/Bingus_Violet/Univerter">Codeberg</a>!</p>
|
||||
<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