1 Million Times Meme Video Generator
About this app
Create hilarious meme videos with repetitive effects. Upload your mp4 video and apply the '1 Million Times' effect instantly!
1 Million Times Meme Video Generator 1 Million Times Meme Video Generator Upload your mp4 video to create endless meme fun! 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 hilarious meme videos with repetitive effects. Upload your mp4 video and apply the '1 Million Times' effect instantly!">
<meta name="keywords" content="meme video generator, video upload, mp4, meme maker, video effects">
<!-- 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 {
// App Javascript
document.addEventListener("DOMContentLoaded", function() {
const videoUpload = document.getElementById('videoUpload');
const videoPlayer = document.getElementById('videoPlayer');
const generateBtn = document.getElementById('generateBtn');
const outputContainer = document.getElementById('outputContainer');
videoUpload.addEventListener('change', function(event) {
const file = event.target.files[0];
if (file && file.type.includes('video')) {
const url = URL.createObjectURL(file);
videoPlayer.src = url;
videoPlayer.load();
} else {
alert("Please upload an mp4 video.");
}
});
generateBtn.addEventListener('click', function() {
if (videoUpload.files.length === 0) {
alert("Please upload a video first.");
} else {
outputContainer.innerHTML += `
<div class="output-video">
<video controls src="${videoPlayer.src}"></video>
<p>Transformed video multiplied 1 million times! (Not actual video processing)</p>
</div>
`;
}
});
});
} catch (error) {
throw error;
}
</script>
<style>
body {
background: linear-gradient(135deg, #ff7676, #ffb74d);
color: white;
font-family: 'Arial', sans-serif;
}
#main-container {
text-align: center;
padding: 50px;
}
video {
width: 100%;
max-width: 500px;
margin: 20px 0;
border: 5px solid white;
border-radius: 10px;
}
.output-video {
background-color: rgba(255, 255, 255, 0.1);
padding: 20px;
border-radius: 10px;
margin: 20px 0;
}
.btn-custom {
background-color: #4285f4;
border: none;
padding: 10px 20px;
border-radius: 5px;
color: white;
cursor: pointer;
}
.btn-custom:hover {
background-color: #357ae8;
}
</style>
</head>
<body>
<div id="main-container" class="container">
<h1>1 Million Times Meme Video Generator</h1>
<p>Upload your mp4 video to create endless meme fun!</p>
<input type="file" id="videoUpload" accept="video/mp4" class="form-control mb-3">
<video id="videoPlayer" controls class="mb-3"></video>
<button id="generateBtn" class="btn-custom">Generate Meme Video</button>
<div id="outputContainer" class="mt-4"></div>
</div>
</body>
</html>
NEW APPS
These are apps made by the community!