Datamosh Video AI - Create Unique Visuals
About this app
Experience the art of datamoshing with our AI-driven tool that transforms your videos into unique artistic visuals effortlessly.
Datamosh Video AI - Create Unique Visuals Datamosh Video AI Transform your videos into unique artistic visuals. Upload a video and see the magic! Datamosh It! Download Datamoshed 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>Datamosh Video AI - Create Unique Visuals</title>
<meta name="description" content="Experience the art of datamoshing with our AI-driven tool that transforms your videos into unique artistic visuals effortlessly.">
<meta name="keywords" content="Datamosh, Video, AI, Art, Transform, Visuals">
<!-- 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 {
// App Javascript Goes Here. Place your entire script content inside the try block for error handling.
document.addEventListener("DOMContentLoaded", function() {
const btnCompress = document.getElementById('btn-compress');
const videoInput = document.getElementById('video-input');
const resultContainer = document.getElementById('result-container');
const downloadLink = document.getElementById('download-link');
btnCompress.addEventListener('click', function() {
const file = videoInput.files[0];
if (file) {
const reader = new FileReader();
reader.onload = function(e) {
const output = document.createElement('div');
output.className = 'mb-3';
// Simulate datamoshing effect
const datamoshedVideoURL = URL.createObjectURL(new Blob([e.target.result], { type: 'video/mp4' }));
output.innerHTML = `<video controls class="img-fluid" style="border: 2px solid #FF5733; background: linear-gradient(45deg, #FFC300, #FF5733);"><source src="${datamoshedVideoURL}" type="video/mp4"></video>`;
resultContainer.innerHTML = '';
resultContainer.appendChild(output);
// set up the download link
downloadLink.href = datamoshedVideoURL;
downloadLink.download = 'datamoshed_video.mp4';
downloadLink.classList.remove('d-none');
}
reader.readAsArrayBuffer(file);
} else {
alert("Please choose a video file!");
}
});
});
} catch (error) {
// This will throw the error to the parent window.
throw error;
}
</script>
<style>
body {
background: linear-gradient(135deg, #23A6D5, #23D5AB);
color: #FFFFFF;
}
#main-container {
margin-top: 50px;
border-radius: 10px;
background: rgba(255, 255, 255, 0.10);
padding: 30px;
box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
h1 {
color: #FF5733;
}
#btn-compress {
background-color: #FF5733;
border: none;
padding: 10px 20px;
color: #FFFFFF;
border-radius: 5px;
cursor: pointer;
}
#result-container video {
margin-top: 20px;
transition: transform 0.3s;
}
#result-container video:hover {
transform: scale(1.05);
}
</style>
</head>
<body>
<div id="main-container" class="container text-center">
<h1>Datamosh Video AI</h1>
<p>Transform your videos into unique artistic visuals. Upload a video and see the magic!</p>
<input type="file" id="video-input" accept="video/mp4" class="form-control mb-3">
<button id="btn-compress">Datamosh It!</button>
<div id="result-container" class="mt-4"></div>
<a id="download-link" class="d-none" style="color: #FF5733;">Download Datamoshed Video</a>
</div>
</body>
</html>
NEW APPS
These are apps made by the community!