Calculator Tools Calculator Tools
Create

Video Maker Pro - Your Creative Video Source

Dec 12, 2025

About this app

Create and edit videos effortlessly with Video Maker Pro. Transform your media into stunning clips instantly!

Video Maker Pro - Your Creative Video Source Video Maker Pro Create Video

Related apps

Put this on your site

Source

                    <html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1">

<title>Video Maker Pro - Your Creative Video Source</title>
<meta name="description" content="Create and edit videos effortlessly with Video Maker Pro. Transform your media into stunning clips instantly!">
<meta name="keywords" content="video editor, video maker, video creation, media editing, online video app">

<!-- Libraries -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.min.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.6.0/css/fontawesome.min.css" crossorigin="anonymous">

<script type="text/javascript">
try {
document.addEventListener("DOMContentLoaded", function() {
const videos = [];

document.getElementById('upload').addEventListener('change', handleVideoUpload);
document.getElementById('create-btn').addEventListener('click', createVideo);

function handleVideoUpload(event) {
const file = event.target.files[0];
const url = URL.createObjectURL(file);
videos.push(url);
displayVideos();
}

function displayVideos() {
const videoList = document.getElementById('video-list');
videoList.innerHTML = '';

videos.forEach((video, index) => {
const videoElement = `
<div class="mb-2">
<video width="300" controls>
<source src="${video}" type="video/mp4">
Your browser does not support the video tag.
</video>
<button class="btn btn-danger btn-sm mt-2" onclick="removeVideo(${index})">Remove</button>
</div>`;
videoList.innerHTML += videoElement;
});
}

window.removeVideo = function(index) {
videos.splice(index, 1);
displayVideos();
}

function createVideo() {
if (videos.length === 0) {
alert("Please upload at least one video.");
return;
}

alert("Video Created Successfully!"); // Here you can implement further video processing functionality.
}
});

} catch (error) {
throw error;
}
</script>

<style>
body {
background: linear-gradient(to right, #f9f9f9, #fff);
color: #333;
}
#main-container {
margin-top: 50px;
text-align: center;
}
h1 {
color: #4a90e2;
margin-bottom: 30px;
animation: fadeIn 1s ease;
}
button {
background-color: #4caf50;
color: white;
transition: background-color 0.3s ease;
}
button:hover {
background-color: #45a049;
}
video {
border: 2px solid #de5733;
border-radius: 8px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
</style>
</head>
<body>
<div id="main-container" class="container">
<h1>Video Maker Pro</h1>
<input type="file" id="upload" accept="video/mp4" multiple>
<button id="create-btn" class="btn btn-primary mt-3">Create Video</button>
<div id="video-list" class="mt-4"></div>
</div>
</body>
</html>