NOTICE THIS WILL ONLY WORK IF YOU HAVE LOCALHOST ENABLED ON YOUR COMPUTER !!!
TYPE: http://localhost:3000/YOUR-VIDEO-NAME-HERE.MP4 THIS CODE IS JUST FOR FUN AND FOR YOU TO BULD ON.
THIS CODE ONLY WORKS FOR VIDEO'S ON YOUR OWN PERSONAL PC OR SERVER.
COPY THIS AND PASTE IT IN THE PASTE VIDEO HERE BOX: http://localhost:3000/QUANTUM-VISITS-THE-INTERNET.mp4
OR THIS VIDEO LINK THAT SHOULD GIVE YOU A DOWNLOAD OPTION FOR THE VIDEO ON THIS PAGE: https://www.shazizz.net/uploads/b/11140438-259704299852966553/quantum-visits-the-internet_970.mp4
GRABVIDEO
Saved Videos
IF YOU LIKE THIS CODE TAKE IT AND RUN OFF LIKE YOU JUST STOLE IT.
SUPPORT MAD SCIENCE FOR MORE GOODIES LIKE THIS.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>GRABVIDEO</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #222;
color: #fff;
text-align: center;
padding: 20px;
}
#videoContainer {
margin: 20px 0;
}
iframe {
width: 100%;
height: 400px;
border: none;
}
#playlist {
margin-top: 20px;
}
button {
padding: 10px 15px;
margin: 5px;
background-color: #f00;
color: white;
border: none;
cursor: pointer;
}
button:hover {
background-color: #c00;
}
</style>
</head>
<body>
<h1>GRABVIDEO</h1>
<input type="text" id="videoURL" placeholder="Paste video URL here" />
<button onclick="loadVideo()">Load Video</button>
<button onclick="saveVideo()">Save to Playlist</button>
<button onclick="goHome()">Home</button>
<div id="videoContainer">
<iframe id="videoPlayer" src="" allowfullscreen></iframe>
</div>
<h2>Saved Videos</h2>
<div id="playlist"></div>
<script>
const playlist = [];
function loadVideo() {
const url = document.getElementById('videoURL').value;
document.getElementById('videoPlayer').src = url;
}
function saveVideo() {
const url = document.getElementById('videoURL').value;
if (url && !playlist.includes(url)) {
playlist.push(url);
updatePlaylist();
}
document.getElementById('videoURL').value = ''; // Clear input
}
function updatePlaylist() {
const playlistDiv = document.getElementById('playlist');
playlistDiv.innerHTML = '';
playlist.forEach((video, index) => {
const videoLink = document.createElement('div');
videoLink.innerHTML = `<a href="#" onclick="loadSavedVideo(${index})">${video}</a>`;
playlistDiv.appendChild(videoLink);
});
}
function loadSavedVideo(index) {
document.getElementById('videoPlayer').src = playlist[index];
}
function goHome() {
window.location.href = 'index.html'; // Adjust to your home page
}
</script>
</body>
</html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>GRABVIDEO</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #222;
color: #fff;
text-align: center;
padding: 20px;
}
#videoContainer {
margin: 20px 0;
}
iframe {
width: 100%;
height: 400px;
border: none;
}
#playlist {
margin-top: 20px;
}
button {
padding: 10px 15px;
margin: 5px;
background-color: #f00;
color: white;
border: none;
cursor: pointer;
}
button:hover {
background-color: #c00;
}
</style>
</head>
<body>
<h1>GRABVIDEO</h1>
<input type="text" id="videoURL" placeholder="Paste video URL here" />
<button onclick="loadVideo()">Load Video</button>
<button onclick="saveVideo()">Save to Playlist</button>
<button onclick="goHome()">Home</button>
<div id="videoContainer">
<iframe id="videoPlayer" src="" allowfullscreen></iframe>
</div>
<h2>Saved Videos</h2>
<div id="playlist"></div>
<script>
const playlist = [];
function loadVideo() {
const url = document.getElementById('videoURL').value;
document.getElementById('videoPlayer').src = url;
}
function saveVideo() {
const url = document.getElementById('videoURL').value;
if (url && !playlist.includes(url)) {
playlist.push(url);
updatePlaylist();
}
document.getElementById('videoURL').value = ''; // Clear input
}
function updatePlaylist() {
const playlistDiv = document.getElementById('playlist');
playlistDiv.innerHTML = '';
playlist.forEach((video, index) => {
const videoLink = document.createElement('div');
videoLink.innerHTML = `<a href="#" onclick="loadSavedVideo(${index})">${video}</a>`;
playlistDiv.appendChild(videoLink);
});
}
function loadSavedVideo(index) {
document.getElementById('videoPlayer').src = playlist[index];
}
function goHome() {
window.location.href = 'index.html'; // Adjust to your home page
}
</script>
</body>
</html>
BELOW IS A DOWNLOAD LINK FOR THE VIDEO ABOVE INCASE YOU WANT TO TRY THIS CODE ON YOUR OWN HOME PC OR SERVER.

quantum-visits-the-internet.mp4 | |
File Size: | 57824 kb |
File Type: | mp4 |