Slow Motion Video Player
About this app
A web app that plays a video at 3.25% of its original speed.
Slow Motion Video Player 🎥 Slow Motion Video Player 🎬
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>Slow Motion Video Player</title>
<meta name="description" content="A web app that plays a video at 3.25% of its original speed.">
<meta name="keywords" content="slow motion, video player, HTML5, YouTube">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Baloo+Thambi+2&display=swap" rel="stylesheet">
<script type="text/javascript">
try {
document.addEventListener("DOMContentLoaded", function() {
const videoId = 'R8iSUJknGZc';
const playbackRate = 0.0325; // 3.25% speed
const playerElement = document.getElementById('youtube-player');
function onYouTubeIframeAPIReady() {
new YT.Player(playerElement, {
height: '390',
width: '640',
videoId: videoId,
events: {
'onReady': onPlayerReady
}
});
}
function onPlayerReady(event) {
event.target.setPlaybackRate(playbackRate);
event.target.playVideo();
}
// Load YouTube IFrame Player API
const tag = document.createElement('script');
tag.src = "https://www.youtube.com/iframe_api";
const firstScriptTag = document.getElementsByTagName('script')[0];
firstScriptTag.parentNode.insertBefore(tag, firstScriptTag);
window.onYouTubeIframeAPIReady = onYouTubeIframeAPIReady;
});
} catch (error) {
throw error;
}
</script>
<style>
/* App CSS Goes Here */
body {
font-family: 'Baloo Thambi 2', cursive;
background: #f0f0f0;
color: #333;
}
#main-container {
margin-top: 50px;
text-align: center;
}
#youtube-player {
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
margin-bottom: 20px;
}
</style>
</head>
<body>
<div id="main-container" class="container">
<h1>🎥 Slow Motion Video Player 🎬</h1>
<div id="youtube-player"></div>
</div>
</body>
</html>
NEW APPS
These are apps made by the community!