1 Million Times Meme Video Generator
About this app
Create your own 1 Million Times meme videos effortlessly. Customize text and download high-quality MP4 videos!
1 Million Times Meme Video Generator 1 Million Times Meme Video Generator Generate Video Your browser does not support the video tag. Download 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 1 Million Times meme videos effortlessly. Customize text and download high-quality MP4 videos!">
<meta name="keywords" content="meme generator, video maker, 1 million times meme, video download, customizable video">
<!-- 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 {
// This will run when the DOM is ready.
document.addEventListener("DOMContentLoaded", function() {
const generateButton = document.getElementById('generate-button');
const downloadButton = document.getElementById('download-button');
const memeContainer = document.getElementById('meme-video');
const textInput = document.getElementById('meme-text');
let generatedVideoUrl = '';
generateButton.addEventListener('click', function() {
const text = textInput.value;
// Generate video with mock function (place actual video generation API logic here)
generatedVideoUrl = `https://via.placeholder.com/640x360?text=${encodeURIComponent(text)}`;
memeContainer.src = generatedVideoUrl;
downloadButton.style.display = 'block';
});
downloadButton.addEventListener('click', function() {
const link = document.createElement('a');
link.href = generatedVideoUrl;
link.download = 'meme_video.mp4';
link.click();
});
});
} catch (error) {
throw error;
}
</script>
<style>
body {
background: linear-gradient(to right, #1d2b64, #f8cdda);
color: #333;
font-family: 'Arial', sans-serif;
}
#main-container {
padding: 30px;
text-align: center;
}
#meme-video {
border: 4px solid #ffcc00;
width: 100%;
max-width: 640px;
margin: 20px 0;
display: none;
}
.button-block {
margin-bottom: 20px;
}
button {
background-color: #ff5733;
border: none;
color: white;
padding: 10px 20px;
font-size: 16px;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s ease;
}
button:hover {
background-color: #c70039;
}
</style>
</head>
<body>
<div id="main-container" class="container">
<h1 class="display-4">1 Million Times Meme Video Generator</h1>
<div class="input-group mb-3">
<input type="text" id="meme-text" class="form-control" placeholder="Enter your meme text here...">
<button id="generate-button" class="btn btn-primary">Generate Video</button>
</div>
<div class="button-block">
<video id="meme-video" controls>
<source src="" type="video/mp4">
Your browser does not support the video tag.
</video>
<button id="download-button" class="btn btn-success" style="display: none;">Download Video</button>
</div>
</div>
</body>
</html>
NEW APPS
These are apps made by the community!