Main/resources/[tools]/nordi_dj/html/index.html

26 lines
690 B
HTML
Raw Normal View History

2025-08-03 16:51:12 +02:00
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2025-08-03 17:09:00 +02:00
<title>DJ System - YouTube Streaming</title>
2025-08-03 16:51:12 +02:00
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="music-player">
2025-08-03 17:09:00 +02:00
<!-- Normaler Audio Player für direkte URLs -->
2025-08-03 16:51:12 +02:00
<audio
id="audio-player"
preload="auto"
crossorigin="anonymous"
style="display: none;">
</audio>
2025-08-03 17:09:00 +02:00
<!-- YouTube Player wird dynamisch erstellt -->
<!-- Container wird von JavaScript erstellt -->
2025-08-03 16:51:12 +02:00
</div>
<script src="script.js"></script>
</body>
</html>