diff options
Diffstat (limited to 'tape-deck.js')
-rw-r--r-- | tape-deck.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tape-deck.js b/tape-deck.js index f13ea8d..04b6d2d 100644 --- a/tape-deck.js +++ b/tape-deck.js @@ -1,6 +1,6 @@ const urlParams = new URLSearchParams(window.location.search); const currentSide = urlParams.get("side"); -const tape = new Audio(`audio/2019-mix-side-${currentSide}.ogg`); +const tape = new Audio(`audio/2019-mix-side-${currentSide}.mp3`); const pressPlaySound = new Audio("audio/tape-start.mp3"); pressPlaySound.onended = (event) => { tape.play(); }; |