Spaces:
Runtime error
Runtime error
Create index.html
Browse files- index.html +32 -0
index.html
ADDED
@@ -0,0 +1,32 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE html>
|
2 |
+
<html lang="en">
|
3 |
+
<head>
|
4 |
+
<meta charset="UTF-8">
|
5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6 |
+
<title>Image Processing App</title>
|
7 |
+
</head>
|
8 |
+
<body>
|
9 |
+
<h1>Image Processing App</h1>
|
10 |
+
<form method="post">
|
11 |
+
<label for="target_path">Target Video Path:</label>
|
12 |
+
<input type="text" name="target_path" required><br>
|
13 |
+
|
14 |
+
<label for="output_quality">Output Video Quality:</label>
|
15 |
+
<input type="text" name="output_quality" required><br>
|
16 |
+
|
17 |
+
<label for="source_path">Source Image Path:</label>
|
18 |
+
<input type="text" name="source_path" required><br>
|
19 |
+
|
20 |
+
<label for="output_path">Output Image/Video Path:</label>
|
21 |
+
<input type="text" name="output_path" required><br>
|
22 |
+
|
23 |
+
<label for="execution_provider">Execution Provider:</label>
|
24 |
+
<input type="text" name="execution_provider" required><br>
|
25 |
+
|
26 |
+
<label for="frame_processors">Frame Processors (comma-separated):</label>
|
27 |
+
<input type="text" name="frame_processors"><br>
|
28 |
+
|
29 |
+
<input type="submit" value="Process">
|
30 |
+
</form>
|
31 |
+
</body>
|
32 |
+
</html>
|