소스 뷰어
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Local MP4 Video Player</title>
</head>
<body>

<!-- Video player -->
<video controls muted autoplay >
    <source src="output.mp4" type="video/mp4">
    Your browser does not support the video tag.
</video>

<!-- Optional: Add some styling for better appearance -->
<style>
    body {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100vh;
        margin: 0;
        background-color: #f0f0f0;
    }
    video {
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }
</style>

</body>
</html>