File size: 1,103 Bytes
bafc5ab
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Image Processing App</title>
</head>
<body>
    <h1>Image Processing App</h1>
    <form method="post">
        <label for="target_path">Target Video Path:</label>
        <input type="text" name="target_path" required><br>

        <label for="output_quality">Output Video Quality:</label>
        <input type="text" name="output_quality" required><br>

        <label for="source_path">Source Image Path:</label>
        <input type="text" name="source_path" required><br>

        <label for="output_path">Output Image/Video Path:</label>
        <input type="text" name="output_path" required><br>

        <label for="execution_provider">Execution Provider:</label>
        <input type="text" name="execution_provider" required><br>

        <label for="frame_processors">Frame Processors (comma-separated):</label>
        <input type="text" name="frame_processors"><br>

        <input type="submit" value="Process">
    </form>
</body>
</html>