forked from MarceauKa/ffmpeg-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (35 loc) · 1.36 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>ffmpeg-generator</title>
<link rel="stylesheet" href="dist/app.css">
</head>
<body class="bg-gray-100">
<div id="app">
<header class="flex w-full justify-between align-middle content-center p-4 bg-white shadow">
<h1 class="text-xl font-black">
ffmpeg generator
<span class="text-gray-700 text-sm font-normal px-2 hidden sm:inline-block">Generate ffmpeg commands with ease</span>
</h1>
<nav>
<a href="https://github.com/MarceauKa/ffmpeg-generator" class="hover:text-indigo-700 leading-relaxed">Source</a>
</nav>
</header>
<main class="p-4">
<div class="w-full rounded overflow-hidden shadow bg-white">
<div class="px-6 py-4">
<file-info></file-info>
</div>
</div>
<streams class="mt-4"></streams>
<file-output class="mt-4"></file-output>
<command-output class="mt-4"></command-output>
</main>
</div>
<script src="dist/app.js"></script>
</body>
</html>