1 Million Times Meme Video Generator
About this app
Create your own meme videos by multiplying your favorite video with 1 million times in a fun, responsive interface. Perfect for sharing and having fun!
1 Million Times Meme Video Generator 1 Million Times Meme Video Generator Upload your video to create hilariously multiplied meme effects! Generate Meme 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 Meme Video Generator</title>
<meta name="description" content="Create your own meme videos by multiplying your favorite video with 1 million times in a fun, responsive interface. Perfect for sharing and having fun!">
<meta name="keywords" content="meme video generator, video effects, video editing, fun videos, meme maker">
<!-- Libraries -->
<!-- jQuery (3.6.0) -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js" crossorigin="anonymous"></script>
<!-- Bootstrap CSS (5.3.3) -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" crossorigin="anonymous">
<!-- Bootstrap JS (5.3.3) -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.min.js" crossorigin="anonymous"></script>
<!-- Font Awesome (6.6.0) -->
<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 videoInput = document.getElementById("videoInput");
const generateButton = document.getElementById("generateButton");
const resultContainer = document.getElementById("resultContainer");
generateButton.addEventListener("click", function() {
const file = videoInput.files[0];
if (file) {
createMemeVideo(file);
} else {
alert("Please select a video file to process!");
}
});
function createMemeVideo(file) {
const url = URL.createObjectURL(file);
const generatedVideo = document.createElement("video");
generatedVideo.src = url;
generatedVideo.controls = true;
generatedVideo.onloadedmetadata = function() {
const duration = generatedVideo.duration;
const boostedDuration = duration * 1000000; // 1 million times
resultContainer.innerHTML = `
<h3>Your Meme Video:</h3>
<p>Original Duration: ${duration.toFixed(2)} seconds</p>
<p>Boosted Duration: ${boostedDuration} seconds (This is a meme effect!)</p>
`;
document.body.appendChild(generatedVideo);
generatedVideo.play();
};
}
});
} catch (error) {
throw error;
}
</script>
<style>
body {
background: linear-gradient(135deg, #ff6f61, #6a82fb);
color: white;
text-align: center;
padding: 50px 20px;
font-family: 'Arial', sans-serif;
}
#main-container {
background-color: rgba(255, 255, 255, 0.1);
border-radius: 10px;
padding: 20px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
input[type="file"] {
padding: 10px;
margin: 20px auto;
border-radius: 5px;
}
button {
background-color: #ff6f61;
border: none;
padding: 10px 20px;
border-radius: 5px;
color: white;
font-size: 16px;
cursor: pointer;
transition: background-color 0.3s;
}
button:hover {
background-color: #eb4d4b;
}
</style>
</head>
<body>
<div id="main-container" class="container">
<h1>1 Million Times Meme Video Generator</h1>
<p>Upload your video to create hilariously multiplied meme effects!</p>
<input type="file" accept="video/*" id="videoInput">
<br>
<button id="generateButton">Generate Meme Video</button>
<div id="resultContainer" class="mt-4"></div>
</div>
</body>
</html>
NEW APPS
These are apps made by the community!