<!DOCTYPE html>
<html lang="tr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Video Oynatıcı</title>
</head>
<body>
<h1>Video Oynatıcı</h1>
<?php if(file_exists($videoPath)): ?>
<video width="640" height="360" controls>
<source src="<?php echo $videoPath; ?>" type="video/mp4">
Tarayıcınız video etiketini desteklemiyor.
</video>
<?php else: ?>
<p>Video bulunamadı: <?php echo $videoPath; ?></p>
<?php endif; ?>
</body>
</html>