RandomPersonRR commited on
Commit
9f97732
·
verified ·
1 Parent(s): c27b24a

Update html.html

Browse files
Files changed (1) hide show
  1. html.html +41 -183
html.html CHANGED
@@ -2,191 +2,49 @@
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>Video Processing</title>
7
-
8
- <!-- Add some basic styling for better visuals -->
9
- <style>
10
- body {
11
- font-family: Arial, sans-serif;
12
- background-color: #f3f3f3;
13
- margin: 0;
14
- padding: 0;
15
- display: flex;
16
- justify-content: center;
17
- align-items: center;
18
- height: 100vh;
19
- }
20
-
21
- h1 {
22
- color: #333;
23
- text-align: center;
24
- }
25
-
26
- .form-container {
27
- background-color: #fff;
28
- padding: 20px;
29
- border-radius: 10px;
30
- box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
31
- width: 300px;
32
- }
33
-
34
- label {
35
- font-size: 16px;
36
- margin-bottom: 5px;
37
- color: #333;
38
- }
39
-
40
- input, select, button {
41
- width: 100%;
42
- padding: 10px;
43
- margin: 10px 0;
44
- border: 1px solid #ccc;
45
- border-radius: 5px;
46
- box-sizing: border-box;
47
- }
48
-
49
- input[type="file"] {
50
- padding: 5px;
51
- }
52
-
53
- button {
54
- background-color: #007BFF;
55
- color: #fff;
56
- border: none;
57
- cursor: pointer;
58
- font-size: 16px;
59
- }
60
-
61
- button:hover {
62
- background-color: #0056b3;
63
- }
64
-
65
- .options-container {
66
- margin-top: 10px;
67
- padding-left: 15px;
68
- }
69
-
70
- .hidden {
71
- display: none;
72
- }
73
-
74
- #copy-streams-container {
75
- background-color: #f9f9f9;
76
- padding: 10px;
77
- border: 1px solid #ddd;
78
- border-radius: 5px;
79
- margin-top: 15px;
80
- }
81
-
82
- #copy-streams-container label {
83
- font-size: 14px;
84
- color: #555;
85
- }
86
-
87
- .form-container select,
88
- .form-container input {
89
- background-color: #f9f9f9;
90
  }
91
- </style>
92
  </head>
93
  <body>
94
- <div class="form-container">
95
- <h1>Video Processing</h1>
96
- <form id="video-form" action="/process" method="POST" enctype="multipart/form-data">
97
- <label for="video">Select Video:</label>
98
- <input type="file" name="video" id="video" required><br><br>
99
-
100
- <label for="action">Select Action:</label>
101
- <select name="action" id="action" required>
102
- <option value="Convert Format">Convert Format</option>
103
- <option value="Trim Video">Trim Video</option>
104
- <option value="Resize Video">Resize Video</option>
105
- <option value="Extract Audio">Extract Audio</option>
106
- <option value="Extract Frames">Extract Frames</option>
107
- <option value="Change Video Speed">Change Video Speed</option>
108
- </select><br><br>
109
-
110
- <!-- Show Copy Streams checkbox only for Convert Format and Trim Video -->
111
- <div id="copy-streams-container" class="hidden">
112
- <label for="copy_streams">Copy Streams (No Re-encoding):</label>
113
- <input type="checkbox" name="copy_streams" id="copy_streams"><br><br>
114
- </div>
115
-
116
- <!-- Inputs for Convert Format action -->
117
- <div id="format-options" class="hidden options-container">
118
- <label for="format">Select Output Format:</label>
119
- <select name="format" id="format">
120
- <option value="mp4">MP4</option>
121
- <option value="avi">AVI</option>
122
- <option value="mkv">MKV</option>
123
- <option value="mov">MOV</option>
124
- <option value="flv">FLV</option>
125
- <option value="webm">WEBM</option>
126
- </select><br><br>
127
- </div>
128
-
129
- <!-- Inputs for Trim Video action -->
130
- <div id="trim-options" class="hidden options-container">
131
- <label for="start_time">Start Time (for Trim Video):</label>
132
- <input type="text" name="start_time" id="start_time"><br><br>
133
-
134
- <label for="duration">Duration (for Trim Video):</label>
135
- <input type="text" name="duration" id="duration"><br><br>
136
- </div>
137
-
138
- <!-- Inputs for Resize Video action -->
139
- <div id="resize-options" class="hidden options-container">
140
- <label for="width">Width (for Resize Video):</label>
141
- <input type="text" name="width" id="width"><br><br>
142
-
143
- <label for="height">Height (for Resize Video):</label>
144
- <input type="text" name="height" id="height"><br><br>
145
- </div>
146
-
147
- <!-- Inputs for Change Video Speed action -->
148
- <div id="speed-options" class="hidden options-container">
149
- <label for="speed_factor">Speed Factor (for Change Video Speed):</label>
150
- <input type="text" name="speed_factor" id="speed_factor"><br><br>
151
- </div>
152
-
153
- <button type="submit">Submit</button>
154
- </form>
155
- </div>
156
-
157
- <script>
158
- // Show or hide the corresponding inputs based on selected action
159
- document.getElementById('action').addEventListener('change', function() {
160
- const action = this.value;
161
- const copyStreamsContainer = document.getElementById('copy-streams-container');
162
- const formatOptions = document.getElementById('format-options');
163
- const trimOptions = document.getElementById('trim-options');
164
- const resizeOptions = document.getElementById('resize-options');
165
- const speedOptions = document.getElementById('speed-options');
166
-
167
- // Hide all extra options initially
168
- formatOptions.classList.add('hidden');
169
- trimOptions.classList.add('hidden');
170
- resizeOptions.classList.add('hidden');
171
- speedOptions.classList.add('hidden');
172
- copyStreamsContainer.classList.add('hidden');
173
-
174
- // Show options based on selected action
175
- if (action === 'Trim Video') {
176
- trimOptions.classList.remove('hidden');
177
- copyStreamsContainer.classList.remove('hidden'); // Show the copy streams option for Trim Video
178
- } else if (action === 'Resize Video') {
179
- resizeOptions.classList.remove('hidden');
180
- } else if (action === 'Change Video Speed') {
181
- speedOptions.classList.remove('hidden');
182
- } else if (action === 'Convert Format') {
183
- formatOptions.classList.remove('hidden'); // Show the format selection for Convert Format
184
- copyStreamsContainer.classList.remove('hidden'); // Show the copy streams option for Convert Format
185
- }
186
- });
187
-
188
- // Trigger the change event to set initial visibility based on the default selection
189
- document.getElementById('action').dispatchEvent(new Event('change'));
190
- </script>
191
  </body>
192
  </html>
 
2
  <html lang="en">
3
  <head>
4
  <meta charset="UTF-8">
5
+ <title>Video Processing Tool</title>
6
+ <script>
7
+ function processVideo(event) {
8
+ event.preventDefault();
9
+ const formData = new FormData(document.getElementById('video-form'));
10
+
11
+ fetch('/process', { method: 'POST', body: formData })
12
+ .then(response => {
13
+ if (!response.ok) throw new Error("Error during processing");
14
+ return response.blob();
15
+ })
16
+ .then(blob => {
17
+ const downloadUrl = URL.createObjectURL(blob);
18
+ const a = document.createElement('a');
19
+ a.href = downloadUrl;
20
+ a.download = "output.mp4";
21
+ document.body.appendChild(a);
22
+ a.click();
23
+ a.remove();
24
+ })
25
+ .catch(error => alert(error.message));
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
26
  }
27
+ </script>
28
  </head>
29
  <body>
30
+ <h1>Video Processing Tool</h1>
31
+ <form id="video-form" onsubmit="processVideo(event)">
32
+ <label for="video">Upload Video:</label>
33
+ <input type="file" id="video" name="video" required>
34
+
35
+ <label for="action">Action:</label>
36
+ <select id="action" name="action">
37
+ <option value="Convert Format">Convert Format</option>
38
+ <option value="Trim Video">Trim Video</option>
39
+ <!-- Other actions... -->
40
+ </select>
41
+
42
+ <label for="format">Format:</label>
43
+ <input type="text" id="format" name="format">
44
+
45
+ <label><input type="checkbox" name="copy_streams"> Copy Streams</label>
46
+
47
+ <button type="submit">Process Video</button>
48
+ </form>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
49
  </body>
50
  </html>