OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
cream
/
videoAII
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
06/17/2025 10:17:24 AM
rwxrwxr-x
📄
22-01-25index.php
6.03 KB
05/19/2025 10:07:22 AM
rw-r--r--
📁
audio
-
01/22/2025 10:53:48 AM
rwxrwxrwx
📄
export.php
7.04 KB
05/19/2025 10:07:22 AM
rw-r--r--
📁
files
-
01/22/2025 05:04:49 AM
rwxrwxrwx
📄
index.php
6.26 KB
05/19/2025 10:07:22 AM
rw-r--r--
📄
script.js
7.77 KB
01/22/2025 05:33:18 AM
rw-r--r--
📄
styles.css
1.01 KB
01/22/2025 05:05:09 AM
rw-r--r--
📄
test.php
7.58 KB
05/19/2025 10:07:22 AM
rwxrwxrwx
📁
testing
-
05/19/2025 10:07:22 AM
rwxr-xr-x
📁
uploads
-
01/22/2025 10:13:10 AM
rwxrwxrwx
📄
video_process.php
11.27 KB
05/19/2025 10:07:22 AM
rw-r--r--
📄
zexport.php
3.56 KB
05/19/2025 10:07:22 AM
rw-r--r--
📄
zindex.php
4.48 KB
05/19/2025 10:07:22 AM
rw-r--r--
📄
zscript.js
5.78 KB
01/22/2025 05:05:09 AM
rw-r--r--
Editing: zindex.php
Close
<? include '../assets/php/validate.logged.php'; include '../assets/php/db_config.php'; include '../assets/php/function.php'; ?> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Create Video from Images</title> <!-- Bootstrap CSS --> <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/5.3.0/css/bootstrap.min.css"> <link href="https://stackpath.bootstrapcdn.com/bootstrap/5.3.3/css/bootstrap.min.css" rel="stylesheet"> <link href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet"> <link rel="stylesheet" href="styles.css"> <link rel="stylesheet" href="/assets/css/styles.css"> <!-- Bootstrap JS and dependencies --> <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/2.11.8/umd/popper.min.js"></script> <script src="https://stackpath.bootstrapcdn.com/bootstrap/5.3.3/js/bootstrap.min.js"></script> <script src="script.js"></script> </head> <body> <? include('../assets/php/navbar.php') ?> <div class="container"> <h1>Create Video from Images</h1> <div class="container form-container"> <!-- <form action="video_process.php" method="post" enctype="multipart/form-data" onsubmit="return validateForm();"> <div class="mb-3"> <button type="button" class="btn btn-primary" onclick="addRow()">Add Another Image</button> </div> <div id="storyboard" class="storyboard"> <div class="storyboard-item"> <img id="preview1" style="max-width: 100px; height: auto;"> <input type="file" name="images[]" accept="image/*" onchange="previewImage(this, 1)" required> <input type="number" name="durations[]" step="0.1" min="0.1" value="5" required> </div> </div> <div class="mb-3"> <label for="captions" class="form-label">Captions:</label> <textarea class="form-control" name="captions" id="captions" rows="5" placeholder="Enter all captions here, each on a new line..."></textarea> </div> <div class="mb-3"> <label for="width" class="form-label">Video Width:</label> <input type="number" class="form-control" name="width" id="width" value="1280" required> </div> <div class="mb-3"> <label for="height" class="form-label">Video Height:</label> <input type="number" class="form-control" name="height" id="height" value="720" required> </div> <button type="submit" class="btn btn-success">Create Video</button> </form> --> <form action="video_process.php" method="post" enctype="multipart/form-data" onsubmit="return validateForm()"> <div class="mb-3"> <button type="button" class="btn btn-primary" onclick="addRow()">Add Another Image</button> </div> <div id="storyboard" class="storyboard"> <div class="storyboard-item" id="item1"> <img id="preview1" style="max-width: 100px; height: auto;"> <input type="file" name="images[]" accept="image/*" onchange="previewImage(this, 1)" required> <input type="number" name="durations[]" step="0.1" min="0.1" value="5" required> <textarea name="captions[]" rows="2" placeholder="Enter caption for this image..."></textarea> <span class="delete-row" onclick="deleteRow(this)">Delete</span> </div> </div> <div class="mb-3"> <label for="width" class="form-label">Video Width:</label> <input type="number" class="form-control" name="width" id="width" value="1280" required> </div> <div class="mb-3"> <label for="height" class="form-label">Video Height:</label> <input type="number" class="form-control" name="height" id="height" value="720" required> </div> <button type="submit" class="btn btn-success">Create Video</button> </form> </div> </div> </body> </html>