1 Million Times Video Generator
About this app
Generate an entertaining video that loops 1 million times with customizable options.
1 Million Times Video Generator 1 Million Times Video Generator Enter video duration in seconds and a message Generate 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>1 Million Times Video Generator</title>
<meta name="description" content="Generate an entertaining video that loops 1 million times with customizable options.">
<meta name="keywords" content="video, generator, loop, mp4, entertainment, create video, colorful">
<!-- 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() {
// Initialize the video generation process
$('#generate-btn').click(function() {
const videoDuration = $('#video-duration').val();
const message = $('#video-message').val() || "Loop this video 1 million times!";
if(videoDuration <= 0) {
alert("Please enter a positive duration.");
return;
}
const videoElement = `<video width="320" height="240" controls loop>
<source src='data:video/mp4;base64,${btoa(`This is a video that loops ${message} for a duration of ${videoDuration} seconds. 1 Million times!`)}' type='video/mp4'>
Your browser does not support the video tag.
</video>`;
$('#video-result').html(videoElement);
});
});
} catch (error) {
throw error;
}
</script>
<style>
body {
background: linear-gradient(to right, #6a11cb, #2575fc);
color: #fff;
font-family: 'Arial', sans-serif;
}
#main-container {
text-align: center;
margin-top: 50px;
}
.input-group {
margin-bottom: 15px;
}
#generate-btn {
background-color: #ff4081;
border: none;
color: white;
padding: 10px 20px;
cursor: pointer;
transition: background-color 0.3s;
}
#generate-btn:hover {
background-color: #e91e63;
}
video {
margin-top: 20px;
border: 5px solid #fff;
border-radius: 15px;
}
</style>
</head>
<body>
<div id="main-container" class="container">
<h1>1 Million Times Video Generator</h1>
<p>Enter video duration in seconds and a message</p>
<div class="input-group">
<input type="number" id="video-duration" class="form-control" placeholder="Video Duration (sec)" aria-label="Video Duration"/>
</div>
<div class="input-group">
<input type="text" id="video-message" class="form-control" placeholder="Enter your message" aria-label="Video Message"/>
</div>
<button id="generate-btn" class="btn btn-primary">Generate Video</button>
<div id="video-result" class="mt-4"></div>
</div>
</body>
</html>
NEW APPS
These are apps made by the community!