audio & express socket.io

This commit is contained in:
bach
2025-02-28 14:51:15 +01:00
parent b1c9f6170b
commit 840ec3e044
13 changed files with 1579 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<script src="script.js"></script>
</body>
</html>
Binary file not shown.
+8
View File
@@ -0,0 +1,8 @@
var myAudio = document.createElement('audio');
myAudio.setAttribute('src','muddy_files.mp3');
myAudio.playbackRate = 0.3;
myAudio.play();
View File