Source Video Scenes Clip - User-Friendly Video Clip Generator
About this app
Create, edit, and source video scenes efficiently with our easy-to-use web app. Perfect for filmmakers, content creators, and video enthusiasts!
Source Video Scenes Clip - User-Friendly Video Clip Generator Source Video Scenes Clip Video Title: Video URL: Add Video Clip
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>Source Video Scenes Clip - User-Friendly Video Clip Generator</title>
<meta name="description" content="Create, edit, and source video scenes efficiently with our easy-to-use web app. Perfect for filmmakers, content creators, and video enthusiasts!">
<meta name="keywords" content="video editing, video clips, video scenes, video creator, content creation, film editing">
<!-- 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 {
document.addEventListener("DOMContentLoaded", function() {
const clipForm = document.getElementById('clipForm');
const clipsContainer = document.getElementById('clipsContainer');
clipForm.addEventListener('submit', function(event) {
event.preventDefault();
const title = document.getElementById('title').value;
const url = document.getElementById('url').value;
if (title && url) {
const clipElement = document.createElement('div');
clipElement.className = 'clip mb-3';
clipElement.innerHTML = `
<h4>${title}</h4>
<video controls class="w-100">
<source src="${url}" type="video/mp4">
Your browser does not support the video tag.
</video>
<button class="btn btn-danger mt-2 remove-clip">Remove</button>
`;
clipsContainer.appendChild(clipElement);
document.getElementById('title').value = '';
document.getElementById('url').value = '';
clipElement.querySelector('.remove-clip').addEventListener('click', function() {
clipsContainer.removeChild(clipElement);
});
} else {
alert('Please enter both title and video URL!');
}
});
});
} catch (error) {
throw error;
}
</script>
<style>
body {
background: linear-gradient(135deg, #f0f8ff, #e6e6fa);
font-family: Arial, sans-serif;
color: #333;
}
#main-container {
margin-top: 50px;
}
h2 {
color: #4A90E2;
}
.clip {
border: 1px solid #ccc;
padding: 15px;
border-radius: 8px;
background-color: #fff;
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.remove-clip {
background-color: #f44336;
color: white;
}
</style>
</head>
<body>
<div id="main-container" class="container">
<h2 class="text-center">Source Video Scenes Clip</h2>
<form id="clipForm" class="mb-4">
<div class="mb-3">
<label for="title" class="form-label">Video Title:</label>
<input type="text" class="form-control" id="title" required>
</div>
<div class="mb-3">
<label for="url" class="form-label">Video URL:</label>
<input type="url" class="form-control" id="url" required>
</div>
<button type="submit" class="btn btn-primary">Add Video Clip</button>
</form>
<div id="clipsContainer" class="mb-4"></div>
</div>
</body>
</html>
NEW APPS
These are apps made by the community!