Video_tools / html.html
RandomPersonRR's picture
Update html.html
d559fe3 verified
raw
history blame
3.62 kB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Video Processing Tool</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f9;
margin: 0;
padding: 20px;
color: #333;
}
h1 {
color: #333;
text-align: center;
}
form {
background: #fff;
max-width: 500px;
margin: auto;
padding: 20px;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
label {
font-weight: bold;
display: block;
margin-top: 10px;
}
input[type="file"],
select,
input[type="text"],
button {
width: 100%;
padding: 8px;
margin-top: 5px;
margin-bottom: 10px;
border: 1px solid #ddd;
border-radius: 4px;
}
button {
background-color: #28a745;
color: #fff;
border: none;
cursor: pointer;
font-weight: bold;
}
button:hover {
background-color: #218838;
}
/* Processing indicator */
#processing-indicator {
display: none;
text-align: center;
color: #ff9900;
font-weight: bold;
margin-top: 10px;
}
</style>
<script>
function processVideo(event) {
event.preventDefault();
const formData = new FormData(document.getElementById('video-form'));
// Show processing indicator
document.getElementById('processing-indicator').style.display = 'block';
fetch('/process', { method: 'POST', body: formData })
.then(response => {
if (!response.ok) throw new Error("Error during processing");
return response.blob();
})
.then(blob => {
const downloadUrl = URL.createObjectURL(blob);
const a = document.createElement('a');
a.href = downloadUrl;
a.download = "output.mp4";
document.body.appendChild(a);
a.click();
a.remove();
})
.catch(error => alert(error.message))
.finally(() => {
// Hide processing indicator
document.getElementById('processing-indicator').style.display = 'none';
});
}
</script>
</head>
<body>
<h1>Video Processing Tool</h1>
<form id="video-form" onsubmit="processVideo(event)">
<label for="video">Upload Video:</label>
<input type="file" id="video" name="video" required>
<label for="action">Action:</label>
<select id="action" name="action">
<option value="Convert Format">Convert Format</option>
<option value="Trim Video">Trim Video</option>
<!-- Other actions... -->
</select>
<label for="format">Format:</label>
<input type="text" id="format" name="format">
<label><input type="checkbox" name="copy_streams"> Copy Streams</label>
<button type="submit">Process Video</button>
</form>
<!-- Processing indicator -->
<div id="processing-indicator">Processing your video, please wait...</div>
</body>
</html>