Anti-Piracy Video Screen Generator
About this app
Create custom anti-piracy screen videos in MP4 format to protect your content.
Anti-Piracy Video Screen Generator Anti-Piracy Video Screen Generator Enter Anti-Piracy 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>Anti-Piracy Video Screen Generator</title>
<meta name="description" content="Create custom anti-piracy screen videos in MP4 format to protect your content.">
<meta name="keywords" content="Anti-Piracy, Video Generator, Security, Content Protection, MP4">
<!-- 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 generateBtn = document.getElementById('generate-btn');
const resultContainer = document.getElementById('result-container');
generateBtn.addEventListener('click', function() {
const message = document.getElementById('message').value;
// We'll create a video URL for demonstration since real video creation requires server-side processing
const fileName = `anti_piracy_video_${Date.now()}.mp4`;
const videoWrapper = `<div class="video-screen p-3 mb-3 border rounded text-center">
<h3>Anti-Piracy Screen Video</h3>
<p>${message}</p>
<video width="320" height="240" controls>
<source src="sample-video.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
<br>
<a href="#" class="btn btn-primary mt-2" download="${fileName}">Download Video</a>
</div>`;
resultContainer.innerHTML = videoWrapper;
});
});
} catch (error) {
throw error;
}
</script>
<style>
body {
background: linear-gradient(to right, #74ebd5, #acb6e5);
color: #333;
font-family: 'Arial', sans-serif;
padding: 20px;
}
h1 {
text-align: center;
margin-bottom: 20px;
color: #fff;
}
.video-screen {
background: rgba(255, 255, 255, 0.9);
box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
border-radius: 5px;
}
#result-container {
margin-top: 20px;
}
</style>
</head>
<body>
<div id="main-container" class="container">
<h1>Anti-Piracy Video Screen Generator</h1>
<div class="mb-3">
<label for="message" class="form-label">Enter Anti-Piracy Message:</label>
<input type="text" id="message" class="form-control" placeholder="Your anti-piracy message here" required />
</div>
<button id="generate-btn" class="btn btn-success">Generate Video</button>
<div id="result-container"></div>
</div>
</body>
</html>
NEW APPS
These are apps made by the community!