expresse depuis cours bach

This commit is contained in:
2025-03-28 16:40:33 +01:00
commit 47997976ab
8 changed files with 1557 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
const socket = io();
var myAudio = document.createElement('audio');
myAudio.setAttribute('src','muddy_files.mp3');
socket.on('speed', (speed) => {
console.log('recieved speed', speed);
myAudio.playbackRate = speed;
});
myAudio.playbackRate = 0.1;
myAudio.play();
Binary file not shown.
+7
View File
File diff suppressed because one or more lines are too long
+3
View File
@@ -0,0 +1,3 @@
body{
background-color: red;
}