Spaces:
Runtime error
Runtime error
<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> |